-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
51 lines (45 loc) · 1.18 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
[package]
name = "debruijn_mapping"
version = "0.6.0"
authors = ["Avi Srivastava <[email protected]>", "Patrick Marks <[email protected]>", "Joey Arthur <[email protected]>"]
edition = "2021"
license = "MIT"
repository = "https://github.com/10XGenomics/rust-pseudoaligner"
include = ["src/**/*", "LICENSE", "README.md"]
[dependencies]
bio = ">=0.35"
crossbeam-utils = ">=0.7"
debruijn = { git = "https://github.com/10XGenomics/rust-debruijn" }
docopt = "1.0"
anyhow = "1"
flate2 = "1.0"
itertools = "0.11"
lazy_static = "1.4"
log = "0.4"
rayon = "1.8"
serde = "1.0"
boomphf = { version = "^0.6", features = ["serde"] }
dashmap = "5"
bincode = "1.2"
pretty_env_logger = "0.5"
[dev-dependencies.proptest]
version = "1"
default-features = false
# Enable all default features not known to break code coverage builds
features = ["default-code-coverage"]
[profile.release]
debug = 1
[features]
default = []
slow_tests = []
[lints.rust]
future_incompatible = "warn"
nonstandard_style = "warn"
unused_must_use = "deny"
[lints.clippy]
perf = "deny"
style = "deny"
wildcard_imports = "deny"
unused_io_amount = "forbid"
redundant_closure_for_method_calls = "deny"
comparison_chain = "allow"