-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
53 lines (47 loc) · 1.17 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
[package]
name = "perbase"
version = "0.10.0"
authors = ["Seth Stadick <[email protected]>"]
edition = "2018"
license = "MIT"
repository = "https://github.com/sstadick/perbase"
description = "Fast and correct perbase BAM/CRAM analysis."
documentation = "https://docs.rs/perbase"
readme = "README.md"
categories = ["science"]
keywords = ["depth", "coverage", "bioinformatics", "genomic"]
[profile.release]
lto = "fat"
codegen-units = 1
[lib]
name = "perbase_lib"
path = "src/lib/mod.rs"
[[bin]]
name = "perbase"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.41"
bio = "0.41"
crossbeam = "0.8"
crossbeam-channel = "0.5"
csv = "1.1.6"
env_logger = "0.9.0"
grep-cli = "0.1.5"
gzp = "0.10"
itertools = "0.10.1"
lazy_static = "1.4.0"
log = "0.4.11"
lru_time_cache = "0.11.1"
num_cpus = "1.13.0"
rayon = "1.4.0"
#TODO add features = ["libdeflate"] when https://github.com/rust-bio/rust-htslib/pull/341 is merged
rust-htslib = {version = "0.38"}
rust-lapper = "1.0"
serde = { version = "1.0.116", features = ["derive"] }
smartstring = { version = "0.2.4", features = ["serde"] }
structopt = "0.3.18"
termcolor = "1.1.0"
[dev-dependencies]
proptest = "1.0.0"
rstest = "0.11.0"
tempfile = "3.1.0"