-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
48 lines (39 loc) · 983 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
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "sylph"
version = "0.8.0"
edition = "2021"
license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
needletail = "0.5.0"
simple_logger= { version = "3", features = ["stderr"] }
log = "0"
rayon = "1"
smallvec = { version = "1", features = ["union","serde","write"] }
serde = { version = "1", features = ["derive"] }
bincode = "1"
fxhash = "0"
clap = { version = "3", features = ["derive"] }
flate2 = { version = "1.0.17", features = ["zlib-ng"], default-features = false }
statrs="0.16"
nalgebra="0"
rand = "0"
regex = "1"
fastrand = "2"
memory-stats = "1"
scalable_cuckoo_filter = "0.2"
serde_yaml = "0.9"
[target.'cfg(target_env = "musl")'.dependencies]
tikv-jemallocator = "0"
[dev-dependencies]
assert_cmd = "1.0.1"
predicates = "1"
serial_test = "*"
[profile.release]
panic = "abort"
lto = true
[profile.dev]
#opt-level = 1
opt-level = 3
#[rust]
#debuginfo-level = 1