-
Notifications
You must be signed in to change notification settings - Fork 29
/
Cargo.toml
36 lines (31 loc) · 967 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "lp-modeler"
version = "0.5.0"
authors = ["Joel Cavat <jcavat@gmail.com>"]
description = "A linear programming modeller written in Rust. This api helps to write LP model and use solver such as CBC, Gurobi, lp_solve, ..."
repository = "https://github.com/jcavat/rust-lp-modeler"
readme = "README.md"
license = "MIT"
keywords = ["linear-programming", "linear-models", "optimization", "solver", "formulation" ]
documentation = "https://jcavat.github.io/rust-lp-modeler"
exclude = [
"src/main.rs",
"*.yml",
"*.gitignore",
"*.log",
"*.iml",
".lp",
"doc/*",
"Cargo.lock",
]
[badges]
travis-ci = { repository = "jcavat/rust-lp-modeler" }
appveyor = { repository = "jcavat/rust-lp-modeler" }
[features]
native_coin_cbc = ["coin_cbc"]
[dependencies]
coin_cbc = {version = "0.1.0", optional = true}
minilp = {version = "0.2", optional = true}
uuid = { version = "0.7.4", features = ["v4"] }
quote = "1"
proc-macro2 = "1.0"