-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (33 loc) · 1.08 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
[package]
name = "pmd-mask"
version = "0.3.2"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
lto = true # Enable link-time optimization
codegen-units = 1 # Don't split compilation across multiple units.
panic = "abort" # Suppress stack unwinding behavior, and let the OS deal with errors.
[profile.dev.package."*"]
opt-level = 3
[[bench]]
name = "apply_pmd_mask"
harness = false
[dependencies]
rust-htslib = { version = "0.44.1", features = ["bzip2", "lzma"]}
clap = { version = "4.1", features = ["derive", "wrap_help", "color"] }
serde = { version = "1.0", features = ["derive"] }
thiserror = "1.0"
anyhow = "1.0"
log = "0.4"
env_logger = "0.9"
chrono = "0.4"
csv = "1.2"
num_cpus = "1.15"
libc = "0.2"
atty = "0.2.14"
[dev-dependencies]
serde_test = "1.0"
assert_cmd = "2.0.8"
assert_fs = "1.0.10"
predicates = "2.1.5"
criterion = {version="0.4.0", features=["html_reports"]}