gzippy 0.8.0

The fastest parallel gzip. Drop-in replacement for gzip and pigz, and a Rust 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"
name = "gzippy"
version = "0.8.0"
authors = ["Jack Danger Canty"]
build = "build.rs"
include = [
    "src/**/*",
    "tests/**/*",
    "examples/**/*",
    "build.rs",
    "Cargo.toml",
    "Cargo.lock",
    "README.md",
    "LICENSE",
    "CLAUDE.md",
    "rust-toolchain.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The fastest parallel gzip. Drop-in replacement for gzip and pigz, and a Rust library."
homepage = "https://github.com/jackdanger/gzippy"
documentation = "https://docs.rs/gzippy"
readme = "README.md"
keywords = [
    "gzip",
    "compression",
    "parallel",
    "pigz",
    "zlib",
]
categories = [
    "compression",
    "command-line-utilities",
]
license = "Zlib"
repository = "https://github.com/jackdanger/gzippy"

[features]
counters = []
debug_decode = []
default = []
isal = []
isal-compression = ["isal-rs"]
oracle = []
profile = []
trace = []

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

[[bin]]
name = "gzippy"
path = "src/main.rs"

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

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

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

[dependencies.anyhow]
version = "1.0"

[dependencies.core_affinity]
version = "0.8"

[dependencies.crc32fast]
version = "1.4"

[dependencies.filetime]
version = "0.2"

[dependencies.flate2]
version = "1.0"
features = ["zlib-ng"]
default-features = false

[dependencies.isal-rs]
version = "0.5"
optional = true

[dependencies.libc]
version = "0.2"

[dependencies.libdeflate-sys]
version = "1.0"

[dependencies.libdeflater]
version = "1.0"

[dependencies.libz-ng-sys]
version = "1"

[dependencies.memchr]
version = "2.7"

[dependencies.memmap2]
version = "0.9"

[dependencies.num_cpus]
version = "1.16"

[dependencies.thiserror]
version = "1.0"

[dependencies.walkdir]
version = "2.4"

[dev-dependencies.assert_cmd]
version = "2.0"

[dev-dependencies.predicates]
version = "3.0"

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

[build-dependencies.cc]
version = "1"

[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
strip = true