-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
56 lines (52 loc) · 1.4 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
[package]
rust-version = "1.76"
name = "vircov"
version = "0.8.4"
authors = ["esteinig <eike.steinig@unimelb.edu.au>"]
description = "Vircov: genome coverage tools for metagenomic diagnostics of viral pathogens"
documentation = "https://github.com/esteinig/vircov"
homepage = "https://github.com/esteinig/vircov"
repository = "https://github.com/esteinig/vircov"
readme = "README.md"
keywords = ["meta-gp", "viral", "metagenomics", "coverage", "diagnostics"]
categories = ["science"]
license = "MIT"
edition = "2021"
include = [
"**/*.rs",
"src/data/*",
"Cargo.toml"
]
[dependencies]
anyhow = "1.0"
clap = { version = "4.3.23", features = ["derive", "env", "unstable-styles", "wrap_help"] }
tabled = "0.15.0"
thiserror = "1.0"
crossterm = "0.23.0"
itertools = "0.10.3"
rust-lapper = "1.0.0"
ordered-float = "3.0.0"
noodles = { version = "0.20.0", features = ["fasta"] }
anstyle = "1.0.6"
log = "0.4.21"
env_logger = "0.10.0"
niffler = "2.5.0"
serde = { version = "1.0.197", features = ["derive"] }
tar = "0.4.40"
tempfile = "3.10.1"
regex = "1.10.4"
csv = "1.3.0"
indexmap = "2.2.6"
rayon = "1.10.0"
chrono = "0.4.38"
needletail = "0.5.1"
rust-htslib = { version = "0.38" }
uuid = { version = "1.10.0", features = ["v4"] }
netview = { git = "https://github.com/esteinig/netviewr", branch = "master" }
[dev-dependencies]
assert_cmd = "2.0.1"
float_eq = "0.6.1"
predicates = "1"
[[bin]]
name = "vircov"
path = "src/main.rs"