Files
obikmer/src/obikseq/Cargo.toml
T

23 lines
546 B
TOML
Raw Normal View History

2026-04-16 22:38:20 +02:00
[package]
name = "obikseq"
version = "0.1.0"
edition = "2024"
[features]
# Replaces the OnceLock-based params with thread-local storage so that
# tests in dependent crates can call set_k / set_m freely without conflicts.
test-utils = []
2026-04-16 22:38:20 +02:00
[dependencies]
bitvec = "1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.149"
xxhash-rust = { version = "0.8.15", features = ["xxh3", "const_xxh3"] }
2026-04-16 22:38:20 +02:00
[dev-dependencies]
criterion2 = { version = "3", features = ["cargo_bench_support"] }
[[bench]]
name = "superkmer"
harness = false