-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
53 lines (49 loc) · 1.21 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
[package]
authors = ["Clay McLeod <[email protected]>"]
edition = "2021"
license = "Apache-2.0/MIT"
name = "ngs"
rust-version = "1.64.0"
publish = true
description = "Command line tool for processing next-generation sequencing data."
version = "0.4.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.65"
clap = { version = "4.0.10", features = ["cargo", "derive", "string"] }
flate2 = "1.0.23"
futures = "0.3.21"
git-testament = "0.2.1"
indexmap = "1.9.1"
indicatif = "0.16.2"
itertools = "0.10.5"
noodles = { version = "0.34.0", features = [
"async",
"bam",
"bgzf",
"csi",
"core",
"fasta",
"fastq",
"gff",
"gtf",
"sam",
"cram",
] }
num-format = "0.4.0"
plotly = "0.8.1"
prettytable-rs = "0.9.0"
rand = "0.8.5"
rand_distr = "0.4.3"
regex = "1.5.5"
rust-lapper = "1.0.1"
serde = { version = "1.0.137", features = ["derive"] }
serde_json = { version = "1.0.81", features = ["preserve_order"] }
tokio = { version = "1.18.0", features = ["fs", "io-std", "rt-multi-thread"] }
tracing = "0.1.34"
tracing-subscriber = "0.3.11"
[features]
default = []
extended-reference-genomes = []
[profile.release]
debug = true