lbzip2 0.1.0

Pure Rust parallel bzip2 decompressor — SIMD block scanning, multi-core Burrows-Wheeler decode
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "lbzip2"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust parallel bzip2 decompressor — SIMD block scanning, multi-core Burrows-Wheeler decode"
homepage = "https://github.com/Ignalina/lbzip2-rs"
documentation = "https://docs.rs/lbzip2"
readme = "README.md"
keywords = [
    "bzip2",
    "decompression",
    "parallel",
    "compression",
]
categories = [
    "compression",
    "encoding",
]
license = "MIT OR Apache-2.0 AND bzip2-1.0.6"
repository = "https://github.com/Ignalina/lbzip2-rs"

[lib]
name = "lbzip2"
path = "src/lib.rs"

[[bin]]
name = "lbunzip2"
path = "src/bin/lbunzip2.rs"

[[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"

[[bench]]
name = "decompress_bench"
path = "benches/decompress_bench.rs"

[[bench]]
name = "profile_stages"
path = "benches/profile_stages.rs"

[[bench]]
name = "stage_breakdown"
path = "benches/stage_breakdown.rs"

[dependencies.memchr]
version = "2"

[dependencies.rayon]
version = "1"

[dev-dependencies.bzip2]
version = "0.5"