-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
34 lines (31 loc) · 955 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 = "rumidup"
version = "0.2.4"
authors = ["Arno Velds <[email protected]>", "Roel Kluin <[email protected]>"]
edition = "2021"
description = "Rumidup is a UMI aware mark duplicates tool for NGS sequencing data."
readme = "README.md"
license = "MIT"
keywords = ["command-line-utilities" ,"science"]
exclude = ["publication"]
publish = false
[features]
zlib-ng = ["flate2/zlib-ng"]
[dependencies]
anyhow = "1.0.43"
atoi = "1.0.0"
tokio = { version = "1.11", features = ["fs", "io-std", "macros", "rt-multi-thread"] }
noodles-bam = { version = "0.21.0", features = ["async"] }
noodles-core = "0.8.0"
noodles-sam = "0.18.0"
noodles-csi = "=0.9.0"
noodles-bgzf = { version = "0.14.0", features = ["async"] }
clap = { version = "4.5.21", features = ["cargo", "derive", "wrap_help"] }
thiserror = "1.0.28"
regex = "1.5.4"
ahash = "0.8.0"
smallvec = "1.7.0"
vec_map = "0.8.2"
flate2 = { version = "1.0.24", optional = true}
[profile.release]
debug = 1