forked from RagnarGrootKoerkamp/minimizers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
60 lines (49 loc) · 1.28 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
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "minimizers"
version = "0.1.0"
edition = "2021"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
debug = true
[dependencies]
# Standard deps
clap = { version = "4", features = ["derive"] }
itertools = "0.12"
rand = "0.8"
rand_chacha = "0.9.0-alpha.1"
rayon = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
num = "0.4"
wyhash = "0.5"
ctor = "0.2"
color-backtrace = "0.6"
# Optional for python bindings
pyo3 = { version = "0.22.2", features = ["extension-module"], optional = true }
# 'Our own' deps.
packed-seq = { version = "0.1.0", git = "https://github.com/rust-seq/packed-seq" }
# packed-seq = { version = "0.1.0", path = "../packed-seq" }
typetag = "0.2.18"
wide = "0.7.30"
[dev-dependencies]
criterion = "0.5.1"
fxhash = "0.2"
minimizer-iter = "1.2.1"
needletail = "0.5.1"
nthash = "0.5.1"
good_lp = { version = "1.7", features = ["lp-solvers"], default-features = false }
[features]
# Hides the `simd` warnings when neither AVX nor NEON is detected.
hide-simd-warning = []
# Enable python bindings
python-bindings = ['dep:pyo3']
default = ['python-bindings']
[lib]
bench = false
crate-type = ["cdylib", "rlib"]
[[example]]
name = "lp"
[[bench]]
name = "bench"
harness = false