-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
39 lines (37 loc) · 1.3 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
[package]
name = "nohuman"
description = "Remove human reads from a sequencing run"
version = "0.3.0"
edition = "2021"
authors = ["Michael Hall <[email protected]>"]
repository = "https://github.com/mbhall88/nohuman"
homepage = "https://github.com/mbhall88/nohuman"
readme = "README.md"
license-file = "LICENSE"
rust-version = "1.80.0"
keywords = ["bioinformatics", "contamination", "metagenomics"]
categories = ["science", "command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
clap = { version = "4.4.7", features = ["derive"] }
log = "0.4.20"
env_logger = "0.11.3"
anyhow = "1.0.75"
flate2 = "1.0.28"
reqwest = { version = "0.12.7", default-features = false, features = ["blocking", "stream", "rustls-tls"] }
tar = "0.4.40"
thiserror = "1.0.50"
tempfile = "3.8.1"
toml = "0.8.8"
serde = { version = "1.0.193", features = ["derive"] }
md5 = "0.7.0"
dirs = "5.0.1"
futures-util = "0.3.29"
async-std = { version = "1.12.0", features = ["attributes", "tokio1"] }
indicatif = "0.17.7"
bzip2 = "0.4.4"
zstd = { version = "0.13.2", features = ["zstdmt"] }
liblzma = { version = "0.2.3", features = ["parallel"] }
gzp = { version = "0.11.3", default-features = false, features = ["deflate_rust"] }