[package]
edition = "2024"
rust-version = "1.87"
name = "slow5lib"
version = "0.1.0"
build = false
exclude = [
"tests/data/",
"fuzz/",
"docs/",
"TODO.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust re-implementation of slow5lib: read and write SLOW5/BLOW5 nanopore sequencing files"
homepage = "https://github.com/Psy-Fer/slow5lib-rs"
documentation = "https://docs.rs/slow5lib"
readme = "README.md"
keywords = [
"slow5",
"blow5",
"nanopore",
"ont",
"bioinformatics",
]
categories = [
"parser-implementations",
"science",
]
license = "MIT"
repository = "https://github.com/Psy-Fer/slow5lib-rs"
[package.metadata.docs.rs]
all-features = true
[features]
default = []
rayon = ["dep:rayon"]
[lib]
name = "slow5lib"
path = "src/lib.rs"
[[bin]]
name = "harness"
path = "src/bin/harness.rs"
[[test]]
name = "c_parity"
path = "tests/c_parity.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "parity"
path = "tests/parity.rs"
[[bench]]
name = "indexed"
path = "benches/indexed.rs"
harness = false
[[bench]]
name = "parallel"
path = "benches/parallel.rs"
harness = false
required-features = ["rayon"]
[[bench]]
name = "throughput"
path = "benches/throughput.rs"
harness = false
[dependencies.flate2]
version = "1"
[dependencies.rayon]
version = "1"
optional = true
[dependencies.svb]
version = "0.3"
[dependencies.thiserror]
version = "2"
[dependencies.zstd]
version = "0.13"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]