-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (53 loc) · 1.27 KB
/
Cargo.toml
File metadata and controls
60 lines (53 loc) · 1.27 KB
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 = "raxtax"
version = "1.6.0"
authors = ["Noah Wahl <noah.ares99@gmail.com>"]
edition = "2021"
repository = "https://github.com/noahares/raxtax"
description = "k-mer-based non-Bayesian Taxonomic Classifier"
readme = "README.md"
license = "AGPL-3.0-or-later"
include = [
"**/*.rs",
"./Cargo.toml",
"./README.md",
"./LICENSE"
]
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ahash = "0.8.11"
anyhow = { version = "1.0.81", features = ["backtrace"] }
bincode = "1.3.3"
clap = { version = "4.5.2", features = ["derive"] }
clap-verbosity-flag = "2.2.0"
core_affinity = "0.8.1"
crossbeam = "0.8.4"
env_logger = "0.11.3"
exitcode = "1.1.2"
flate2 = "1.0.28"
indicatif = { version = "0.17.8", features = ["rayon"] }
itertools = "0.12.1"
log = "0.4.21"
logging_timer = "1.1.1"
rayon = "1.9.0"
regex = "1.10.4"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0"
statrs = "0.16.0"
[build-dependencies]
chrono = "0.4.42"
[profile.ultra]
inherits = "release"
codegen-units = 1
lto = true
panic = "abort"
[profile.rel-perf]
inherits = "release"
debug = 1
# The profile that 'dist' will build with
[profile.dist]
inherits = "ultra"
lto = "thin"
[features]
huge_db = []