2026-04-16 22:38:20 +02:00
|
|
|
[package]
|
|
|
|
|
name = "obikseq"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2024"
|
|
|
|
|
|
2026-05-05 18:08:19 +02:00
|
|
|
[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"
|
2026-04-29 22:52:42 +02:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
|
serde_json = "1.0.149"
|
2026-04-26 14:58:41 +02:00
|
|
|
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
|