-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
76 lines (66 loc) · 1.72 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[package]
name = "rboss"
version = "0.3.2"
edition = "2021"
authors = ["Yangyang Li <yangyang.li@northwestern.edu>"]
readme = "README.md"
repository = "https://github.com/cauliyang/rboss"
homepage = "https://github.com/cauliyang/rboss"
documentation = "https://github.com/cauliyang/rboss"
license = "MIT"
description = "Rust Bioinformatics Toolbox"
keywords = ["Bioinformatics", "Graph", "Toolbox"]
categories = ["command-line-interface"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.dev.package."*"]
opt-level = 3 # Compile dependencies with optimizations on even in debug mode.
[profile.no-opt]
inherits = "dev"
opt-level = 0
[features]
graph = []
[profile.profiling]
inherits = "release"
debug = true
strip = false
[profile.release]
debug = 0
strip = "symbols"
lto = true
opt-level = 3
codegen-units = 1
[dependencies]
ahash = "0.8.7"
anyhow = { version = "1.0" }
bio = "1.5.0"
bstr = "1.9"
clap = { version = "4.5.0", features = ["wrap_help", "derive", "cargo"] }
clap-verbosity-flag = "2.1.2"
clap_complete = "4.5"
colored = "2"
env_logger = "0.11"
human-panic = "1.2.3"
indicatif = "0.17"
log = "0.4"
noodles-bam = "0.55"
noodles-bgzf = "0.26"
noodles-core = "0.14"
noodles-csi = "0.30"
noodles-fasta = "0.32"
noodles-fastq = "0.10"
noodles-sam = "0.52"
petgraph = { version = "0.6", features = ["serde-1"] }
plotters = { version = "0.3" }
polars = { version = "0.37", features = ["lazy"] }
rayon = { version = "1.8" }
regex = { version = "1.10" }
serde = { version = "1.0" }
serde_json = { version = "1.0" }
walkdir = { version = "2.4" }
# standard crate data is left out
[dev-dependencies]
assert_cmd = "2.0"
assert_fs = "1.1"
pretty_assertions = "1"
sha256 = "1.5"
tempfile = "3.10"