-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
34 lines (30 loc) · 880 Bytes
/
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
[package]
name = "STRdust"
version = "0.11.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "3.2.6", features = ["derive"] }
env_logger = "0.11.3"
flate2 = "1.0.24"
log = "0.4.17"
rayon = "1.5.3"
rust-htslib = { version = "0.47.0", features = ["s3", "curl"] }
bio = { git = "https://github.com/lorewar2/rust-bio.git", branch = "reverse_edge_fix" }
human-sort = "0.2.2"
minimap2 = { version = "0.1.20", features = ["htslib"] }
kodama = "0.3.0"
regex = "1.8.1"
url = "2.3.1"
distance = "0.4.0"
levenshtein = "1.0.5"
rand = "0.8.5"
libz-sys = "1.1.12"
libc = "0.2.147"
petgraph = "0.6.4"
hts-sys = "2.1.1"
reqwest = { version = "0.12.5", features = ["blocking", "json"] }
indicatif = { version = "0.17.1", features = ["rayon"] }
chrono = "0.4.38"
[dev-dependencies]
ctor = "*"