-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
47 lines (41 loc) · 1.05 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "frcw"
version = "0.1.0"
authors = ["Parker J. Rule <[email protected]>"]
edition = "2018"
[dependencies]
clap = "2.33.4"
crossbeam-channel = "0.5.0"
crossbeam = "0.8.0"
mimalloc = {version = "0.1.27", default-features=false}
ndarray = { version = "0.14", optional = true }
ndarray-linalg = { version = "0.13", features = ["openblas-system"], optional = true }
pcompress = "1.0.6"
petgraph = "0.6.0"
rand = { version = "0.8.3", features = ["small_rng"] }
serde = { version = "1.0.64", features = ["derive"] }
serde_json = "1.0.64"
sha3 = "0.10.0"
snafu = "0.7.0"
itertools = "0.10.2"
[dev-dependencies]
rstest = "0.10.0"
criterion = "0.3"
approx = "0.5.0"
test_fixtures = { path = "test_fixtures" }
[features]
# Enables spanning tree statistics (and eventually other features
# that depend on a working BLAS installation).
linalg = ["ndarray", "ndarray-linalg"]
[[bench]]
name = "recom"
harness = false
[profile.dev]
split-debuginfo = "unpacked"
debug = true
opt-level = 3
[profile.release]
debug = false
lto = true
codegen-units = 1
panic = "abort"