-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (33 loc) · 789 Bytes
/
Cargo.toml
File metadata and controls
36 lines (33 loc) · 789 Bytes
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
[package]
name = "kbo-cli"
version = "0.2.1"
edition = "2021"
rust-version = "1.77.0"
authors = [
"Tommi Mäklin <tommi@maklin.fi>",
"Jarno N. Alanko <alanko.jarno@gmail.com>"
]
description = "Command-line interface to the kbo local aligner."
readme = "README.md"
homepage = "https://github.com/tmaklin/kbo-cli"
repository = "https://github.com/tmaklin/kbo-cli"
license = "MIT OR Apache-2.0"
[[bin]]
name = "kbo"
path = "src/main.rs"
[dependencies]
## core
clap = { version = "4", features = ["derive"]}
chrono = "0.4.40"
csv = "1.3.0"
kbo = "0.5.0"
log = "0.4.20"
needletail = { version = "0.6.0", default-features = false, features = ["flate2"] }
noodles-vcf = "0.49"
rayon = "1"
sbwt = "0.3.4"
stderrlog = "0.6.0"
[profile.release]
strip = false
lto = true
codegen-units = 1