-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
65 lines (49 loc) · 1.35 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
[package]
name = "rustyread"
version = "0.4.1"
authors = ["Pierre Marijon <[email protected]>"]
edition = "2021"
description = "A long read generator based on badread method"
rust-version = "1.57"
homepage = "https://github.com/natir/rustyread"
repository = "https://github.com/natir/rustyread"
documentation = "https://natir.github.io/rustyread/rustyread"
readme = "Readme.md"
license-file = "LICENSE"
keywords = ["bioinformatics", "longread"]
publish = false # this crate haven't his place in crates.io
default-run = "rustyread"
[lib]
name = "rustyread"
[dependencies]
bio = "0.33"
csv = "1"
rand = "0.8"
rand_distr = "0.4"
regex = "1"
rustc-hash = "1"
uuid = { version = "0.8", features = ["v3"] }
# parallel
rayon = "1"
# input output management
niffler = { version = "2", features = ["bz2", "lzma", "gz"] }
# CLI management
clap = { version = "3", features = ["derive"] }
# Logging and error management
log = "0.4"
anyhow = "1"
thiserror = "1"
env_logger = "0.9"
[dev-dependencies]
criterion = "0.3"
rand = { version = "0.8", features = ["small_rng"] }
[profile.release]
#debug = true # uncomment for profiling
lto = 'thin'
opt-level = 3
overflow-checks = false
panic = 'abort'
incremental = false
[[bench]]
name = "add_error"
harness = false