[package]
name = "lbzip2"
version = "0.5.8"
edition = "2024"
description = "Pure Rust parallel bzip2 decompressor — fast block scanning, multi-core Burrows-Wheeler decode"
license = "MIT OR Apache-2.0 AND bzip2-1.0.6"
repository = "https://codeberg.org/nordisk/znippy"
homepage = "https://codeberg.org/nordisk/znippy"
documentation = "https://docs.rs/lbzip2"
readme = "README.md"
keywords = ["bzip2", "decompression", "parallel", "compression"]
categories = ["compression", "encoding"]
autobenches = false
[features]
timing = []
testmatrix = ["dep:nornir-testmatrix", "nornir-testmatrix/testmatrix"]
[dependencies]
memchr = "2"
anyhow = "1"
gatling = { path = "../gatling", version = "0.1.7", package = "rotaryengine" }
nornir-testmatrix = { version = "0.2", default-features = false, optional = true }
[dev-dependencies]
bzip2 = "0.5"
[[test]]
name = "decompress_bench"
path = "benches/decompress_bench.rs"
[[test]]
name = "profile_stages"
path = "benches/profile_stages.rs"
[[test]]
name = "stage_breakdown"
path = "benches/stage_breakdown.rs"