gzp 2.0.4

Parallel Compression
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 = "2018"
name = "gzp"
version = "2.0.4"
authors = ["Seth Stadick <sstadick@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parallel Compression"
homepage = "https://github.com/sstadick/gzp"
documentation = "https://docs.rs/gzp"
readme = "README.md"
keywords = [
    "compression",
    "parallel",
    "pigz",
]
categories = [
    "compression",
    "concurrency",
]
license = "Unlicense/MIT"
repository = "https://github.com/sstadick/gzp"

[features]
any_zlib = ["flate2/any_zlib"]
default = [
    "deflate_default",
    "libdeflate",
]
deflate = []
deflate_default = ["deflate_zlib_ng"]
deflate_rust = [
    "deflate",
    "flate2/rust_backend",
]
deflate_zlib = [
    "deflate",
    "flate2/zlib",
    "any_zlib",
    "libz-sys",
    "libz-sys/libc",
]
deflate_zlib_ng = [
    "deflate",
    "flate2/zlib-ng",
    "any_zlib",
    "libz-ng-sys",
]
libdeflate = ["libdeflater"]
snappy = []
snappy_default = [
    "snappy",
    "snap",
    "deflate_rust",
]

[lib]
name = "gzp"
path = "src/lib.rs"
bench = false

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

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

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

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

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

[dependencies.byteorder]
version = "1.5.0"

[dependencies.bytes]
version = "1.12.1"

[dependencies.core_affinity]
version = "0.8.3"

[dependencies.flate2]
version = "1.1.4"
optional = true
default-features = false

[dependencies.flume]
version = "0.11.1"

[dependencies.libdeflater]
version = "1.25.2"
optional = true

[dependencies.libz-ng-sys]
version = "1.1.22"
optional = true

[dependencies.libz-sys]
version = "1.1.22"
optional = true
default-features = false

[dependencies.log]
version = "0.4.28"

[dependencies.num_cpus]
version = "1.17.0"

[dependencies.snap]
version = "1.1.1"
optional = true

[dependencies.thiserror]
version = "2.0.20"

[dev-dependencies.criterion]
version = "0.7.0"

[dev-dependencies.proptest]
version = "1.11.0"

[dev-dependencies.tempfile]
version = "3.27.0"