-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (42 loc) · 1.06 KB
/
Cargo.toml
File metadata and controls
60 lines (42 loc) · 1.06 KB
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
[package]
name = "kff"
version = "0.9.0"
authors = ["Pierre Marijon <pierre@marijon.fr>"]
edition = "2021"
description = "Kmer File Format Rust parser"
rust-version = "1.62"
homepage = "https://github.com/natir/kff"
repository = "https://github.com/natir/kff"
documentation = "https://natir.github.io/kff/kff"
readme = "Readme.md"
license-file = "LICENSE"
exclude = [
".copier-answers.yml",
".github/*"
]
[dependencies]
# Error management
thiserror = { version = "1" }
# Logging management
log = { version = "0.4" }
getset = { version = "0.1" }
rustc-hash = { version = "2" }
bitvec = { version = "1" }
[dev-dependencies]
# CLI management
clap = { version = "4", features = ["derive"] }
# Logging management
stderrlog = { version = "0.6" }
# Profiling
criterion = { version = "0.5" }
rand = { version = "0.8" }
tempfile = { version = "3" }
[profile.release]
lto = 'thin'
opt-level = 3
overflow-checks = false
panic = 'abort'
incremental = false
[profile.profiling]
inherits = "release"
debug = true