RsBundle  Diff

Differences From Artifact [93f545c069]:

  • File Cargo.toml — part of check-in [523a8fa789] at 2022-04-01 11:19:43 on branch trunk — Update cplex-sys to 0.9.0 (user: fifr size: 1030)

To Artifact [a20ce3db58]:

  • File Cargo.toml — part of check-in [c2bd793827] at 2022-06-11 16:45:33 on branch solver-state — Add save and restore of current state to master problems and sync solver (user: fifr size: 1199)

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
[package]
name = "bundle"
version = "0.7.0-dev"
edition = "2018"
authors = ["Frank Fischer <frank-fischer@shadow-soft.de>"]

[features]
default = []
BLAS = ["rs-blas", "openblas-src"]
crossbeam = ["rs-crossbeam"]
mcf = ["rs-graph"]


[dependencies]
either = "^1"
libc = "^0.2.6"
log = "^0.4"
c_str_macro = "^1.0"
cplex-sys = "^0.9"
float-pretty-print = "^0.1"
rs-crossbeam = { version = "^0.8", optional = true, package = "crossbeam" }
threadpool = "^1.7"
num_cpus = "^1.2"
num-traits = "^0.2.8"
rs-blas = { version = "^0.22.0", optional = true, package = "blas" }
rs-graph = { version = "^0.21.0-dev", optional = true, features = ["dimacs"] }
openblas-src = { version = "^0.10", optional = true, features = ["system"], default-features = false }


assert_float_eq = "^1.0"
thiserror = "^1.0.19"
replace_with = "^0.1.7"

[dev-dependencies]
env_logger = "^0.8"
ordered-float = "^2.0"







|



>















>
>







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 = "bundle"
version = "0.7.0-dev"
edition = "2018"
authors = ["Frank Fischer <frank-fischer@shadow-soft.de>"]

[features]
default = ["serialize"]
BLAS = ["rs-blas", "openblas-src"]
crossbeam = ["rs-crossbeam"]
mcf = ["rs-graph"]
serialize = ["serde", "serde_json"]

[dependencies]
either = "^1"
libc = "^0.2.6"
log = "^0.4"
c_str_macro = "^1.0"
cplex-sys = "^0.9"
float-pretty-print = "^0.1"
rs-crossbeam = { version = "^0.8", optional = true, package = "crossbeam" }
threadpool = "^1.7"
num_cpus = "^1.2"
num-traits = "^0.2.8"
rs-blas = { version = "^0.22.0", optional = true, package = "blas" }
rs-graph = { version = "^0.21.0-dev", optional = true, features = ["dimacs"] }
openblas-src = { version = "^0.10", optional = true, features = ["system"], default-features = false }
serde = { version = "^1", optional = true, features = ["derive", "rc"] }
serde_json = { version = "^1", optional = true }
assert_float_eq = "^1.0"
thiserror = "^1.0.19"
replace_with = "^0.1.7"

[dev-dependencies]
env_logger = "^0.8"
ordered-float = "^2.0"