-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
51 lines (44 loc) · 1.32 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 = "kun_peng"
version = "0.7.4"
edition = "2021"
authors = ["eric9n@gmail.com"]
description = "Kun-peng: an ultra-fast, low-memory footprint and accurate taxonomy classifier for all"
license = "MIT"
repository = "https://github.com/eric9n/Kun-peng"
keywords = ["bioinformatics", "metagenomics", "microbiome", "exposome"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "kun_peng"
path = "src/bin/kun.rs"
[features]
double_hashing = []
exact_counting = []
[dependencies]
seqkmer = "0.1.1"
clap = { version = "4.4.10", features = ["derive"] }
hyperloglogplus = { version = "0.4.1", features = ["const-loop"] }
seahash = "4.1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
byteorder = "1.4"
walkdir = "2"
rayon = "1.8"
libc = "0.2"
regex = "1.5.4"
flate2 = "1.0"
dashmap = { version = "6.0.1", features = ["rayon"] }
num_cpus = "1.13.1"
[target.'cfg(not(target_env = "msvc"))'.dependencies]
jemallocator = "0.5.4"
[dev-dependencies]
criterion = "0.5.1"
twox-hash = "1.6.3"
farmhash = { version = "1.1.5" }
[profile.release]
lto = true
opt-level = "s" # 或者 "z"
debug-assertions = false
# panic = 'abort'
codegen-units = 1 # Compile crates one after another so the compiler can optimize better
strip = true # Remove debug symbols