-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
49 lines (42 loc) · 1.13 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
[package]
name = "pufferfish"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
# Compile with target-cpu=native for fastest performance
opt-level = 3
lto = true
# debug = true
# Even faster flags
debug = false
panic = "abort"
[dependencies]
kmers = { git = "https://github.com/COMBINE-lab/kmers.git" }
clap = { version = ">=3.1.0", features = ["derive"] }
csv = "1.1"
bincode = ">=1.3.3"
delegate = "0.6.2"
log = "0.4"
log4rs = "1.0"
lru = "0.7.3"
rand = ">=0.8.5"
serde_json = ">=1.0"
serde-pickle = ">=1.0"
serde = {version = ">=1.0", features = ["derive"] }
seq_io = { git = "https://github.com/markschl/seq_io" }
simple-sds = {git = "https://github.com/thejasonfan/simple-sds", branch = "serde_compat"}
# simple-sds = {git = "https://github.com/jltsiren/simple-sds", tag = "v0.3"}
flate2 = ">=1"
criterion = "0.3"
[dev-dependencies]
pretty_assertions = ">=1.1"
quickcheck = ">=1"
quickcheck_macros = ">=1"
criterion = "0.3"
[lib]
# disable cargo bench harness in favor of criterion
bench = false
[[bench]]
name = "bench_wm"
harness = false