-
Notifications
You must be signed in to change notification settings - Fork 22
/
Cargo.toml
66 lines (60 loc) · 1.38 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
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "rust-bio-tools"
version = "0.42.2"
authors = ["Johannes Köster <johannes.koester@tu-dortmund.de>", "Erik Clarke <ecl@pennmedicine.upenn.edu>"]
description = "A set of fast and robust command line utilities for bioinformatics tasks based on Rust-Bio."
license-file = "LICENSE.md"
homepage = "https://github.com/rust-bio/rust-bio-tools"
edition = "2018"
readme = "README.md"
[dependencies]
approx = "0.4"
bio = "0.39"
clap = { version = "2.31", features = ["yaml", "color", "suggestions"]}
indicatif = "0.11"
itertools = "0.12"
log = "0.4.6"
fern = "0.5.7"
rust-htslib = "0.46.0"
csv = "1.0.2"
rustc-serialize = "0.3"
newtype_derive = "0.1"
custom_derive = "0.1"
rand = "0.7.3"
rand_core = "0.5.1"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
uuid = { version = "0.7", features = ["v4"] }
tempfile = "3.0"
rocksdb = "0.19"
ordered-float = "0.5"
flate2 = "1.0.5"
streaming-stats = "0.2.2"
GSL = "7.0.0"
bio-types = ">=0.5.1"
derive-new = "0.5"
reqwest = "0.9"
regex = "1.3"
tera = "1"
jsonm = "0.1.4"
chrono = "0.4"
xlsxwriter = {version = "0.6", features= ["use-openssl-md5", "no-md5"]}
lazy_static = "1.4"
anyhow = "1"
thiserror = "1"
rayon = "1.5"
structopt = "0.3"
lz-str = "0.1.0"
[[bin]]
name = "rbt"
path = "src/main.rs"
[features]
default = ["GSL/v2_1"]
[profile.release]
codegen-units = 1
lto = "fat"
[profile.develop]
codegen-units = 128
inherits = "release"
lto = false