-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (32 loc) · 822 Bytes
/
Copy pathCargo.toml
File metadata and controls
36 lines (32 loc) · 822 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 = "ntcomp"
version = "0.1.0"
edition = "2024"
authors = [
"Tommi Mäklin <tommi@maklin.fi>",
]
description = "Sequencing data compression using SBWT and k-bounded matching statistics."
readme = "README.md"
## homepage = "https://github.com/tmaklin/ntcomp"
repository = "https://codeberg.org/themaklin/ntcomp"
license = "MIT OR Apache-2.0"
[[bin]]
name = "ntcomp"
path = "src/main.rs"
[dependencies]
## core
bincode = "2"
bitnuc = "0.2"
clap = { version = "4", features = ["derive"]}
csv = "1"
dsi-bitstream = "0.8"
flate2 = { version = "1.1", default-features = false, features = ["zlib-rs"] }
kbo = "0.5.2"
log = "0.4"
needletail = { version = "0.6", default-features = false, features = ["flate2"] }
sbwt = "0.6"
stderrlog = "0.6"
[dev-dependencies]
random = "0.14"
[profile.release]
debug = true