-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
57 lines (49 loc) · 1.42 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
[package]
name = "mapad"
version = "0.43.0"
description = "An aDNA aware short-read mapper"
authors = ["J. Christian Heide <[email protected]>"]
edition = "2021"
readme = "Readme.md"
publish = false
rust-version = "1.62.1"
[dependencies]
clap = { version = "4.0", features = ["cargo", "string"] }
log = "0.4"
simple_logger = "5.0"
bincode = "1.3"
bio = { version = "1.5.0-mapAD", features = ["runtime-dispatch-simd"] }
assert_approx_eq = "1.1"
smallvec = "1.8"
rand = "0.9"
serde = { version = "1.0", features = ["derive"] }
snap = "1.0"
either = "1.6"
rayon = "1.5"
mio = { version = "1.0", features = ["os-poll", "net"] }
min-max-heap = { git = "https://github.com/tov/min-max-heap-rs", branch = "master"}
slab = "0.4"
anyhow = "1.0"
noodles = { version = "0.91", features = ["bam", "bgzf", "core", "cram", "fasta", "fastq", "sam"] }
time = { version = "0.3", features = ["local-offset"] }
flate2 = "1.0"
bstr = { version = "1.9", features = ["serde"] }
[patch.crates-io]
bio = { git = "https://github.com/jch-13/rust-bio.git", branch = "occ_small_k" }
[target.'cfg(target_env = "musl")'.dependencies]
mimalloc = { version = "0.1", default-features = false }
[dev-dependencies]
criterion = "0.5"
tempfile = "3.3"
[build-dependencies]
built = { version = "0.7", features = ["git2"] }
[[bench]]
name = "benchmark"
harness = false
[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"
[profile.bench]
lto = "fat"
codegen-units = 1