parallel_bzip2_decoder 0.2.1

High-performance parallel bzip2 decompression library
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 = "2021"
rust-version = "1.70"
name = "parallel_bzip2_decoder"
version = "0.2.1"
authors = ["Gautier Portet <gautier@soundconverter.org>"]
build = false
include = [
    "src/**/*",
    "benches/**/*",
    "examples/**/*",
    "tests/**/*",
    "Cargo.toml",
    "README.md",
    "LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance parallel bzip2 decompression library"
homepage = "https://github.com/kassoulet/bz2zstd"
documentation = "https://docs.rs/parallel_bzip2_decoder"
readme = "README.md"
keywords = [
    "bzip2",
    "decompression",
    "parallel",
    "performance",
]
categories = [
    "compression",
    "concurrency",
]
license = "MIT"
repository = "https://github.com/kassoulet/bz2zstd"

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

[[example]]
name = "simple_decode"
path = "examples/simple_decode.rs"

[[example]]
name = "test_decoder"
path = "examples/test_decoder.rs"

[[test]]
name = "regression"
path = "tests/regression.rs"

[[bench]]
name = "decode_benchmark"
path = "benches/decode_benchmark.rs"
harness = false

[[bench]]
name = "e2e_benchmark"
path = "benches/e2e_benchmark.rs"
harness = false

[[bench]]
name = "scanner_benchmark"
path = "benches/scanner_benchmark.rs"
harness = false

[dependencies.aho-corasick]
version = "1.1.4"

[dependencies.anyhow]
version = "1.0"

[dependencies.bzip2]
version = "0.4"
features = ["static"]

[dependencies.crossbeam-channel]
version = "0.5"

[dependencies.memmap2]
version = "0.7"

[dependencies.rayon]
version = "1.7"

[dependencies.thiserror]
version = "1.0"

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[target."cfg(unix)".dev-dependencies.pprof]
version = "0.13"
features = [
    "flamegraph",
    "criterion",
]