-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
46 lines (40 loc) · 1.16 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
[package]
name = "yacrd"
version = "1.0.0"
authors = ["Pierre Marijon <[email protected]>"]
edition = '2021'
rust-version = "1.74"
exclude = ["image/*", "tests/*"]
description = "Using all-against-all read mapping, yacrd performs: computation of pile-up coverage for each read and detection of chimeras"
homepage = "https://github.com/natir/yacrd"
repository = "https://github.com/natir/yacrd"
readme = "Readme.md"
license = "MIT"
keywords = ["bioinformatics", "chimera", "long-read", "scrubbing"]
[dependencies]
noodles = { version = "0.84", features = ["fasta", "fastq"] }
csv = { version = "1" }
log = "0.4"
sled = "0.34"
clap = { version = "3", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
rayon = "1"
anyhow = "1"
bincode = "1"
niffler = "2"
thiserror = "1"
env_logger = "0.9"
rustc-hash = "1"
remove_dir_all = "0.8"
[dev-dependencies]
tempfile = "3"
[profile.release]
#debug = true # uncomment for profiling
lto = 'thin'
opt-level = 3
overflow-checks = false
panic = 'abort'
incremental = false
[[bin]]
name = "yacrd"
path = "src/main.rs"