-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
67 lines (48 loc) · 1.21 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
67
[package]
name = "biotest"
version = "0.2.0"
authors = ["Pierre Marijon <[email protected]>"]
edition = "2021"
description = "Generate random test data for bioinformatics"
rust-version = "1.74"
homepage = "https://github.com/natir/biotest"
repository = "https://github.com/natir/biotest"
documentation = "https://natir.github.io/biotest/biotest"
readme = "Readme.md"
license-file = "LICENSE"
[features]
cigar = []
fasta = []
fastq = []
gff = []
quality = []
sequence = []
vcf = []
[dependencies]
rand = { version = "0.8" }
typed-builder = { version = "0.18" }
# Error management
thiserror = { version = "1" }
# Logging and error management
log = { version = "0.4" }
[dev-dependencies]
# Test
tempfile = { version = "3" }
assert_matches = { version = "1" }
# Examples
clap = { version = "4", features = ["derive"] }
stderrlog = { version = "0.6" }
[[example]]
name = "default"
required-features = ["fasta", "fastq", "vcf", "sequence", "quality"]
[profile.release]
lto = 'thin'
opt-level = 3
overflow-checks = false
panic = 'abort'
incremental = false
[profile.profiling]
inherits = "release"
debug = true
[package.metadata.docs.rs]
all-features = true