zenflate 0.2.1

Pure Rust DEFLATE/zlib/gzip compression and decompression, ported from libdeflate
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"
rust-version = "1.89"
name = "zenflate"
version = "0.2.1"
build = false
exclude = [
    ".github/",
    "CLAUDE.md",
    "FEEDBACK.md",
    "Dockerfile",
    "justfile",
    "examples/heap_*.rs",
    "examples/profile_compress.rs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust DEFLATE/zlib/gzip compression and decompression, ported from libdeflate"
readme = "README.md"
keywords = [
    "deflate",
    "zlib",
    "gzip",
    "compression",
    "decompression",
]
categories = ["compression"]
license = "MIT"
repository = "https://github.com/imazen/zenflate"

[features]
alloc = []
avx512 = [
    "archmage/avx512",
    "safe_unaligned_simd/avx512",
]
default = [
    "std",
    "avx512",
]
std = [
    "alloc",
    "archmage/std",
]
unchecked = []

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

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

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

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

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

[dependencies.archmage]
version = "0.8.6"
features = [
    "macros",
    "safe_unaligned_simd",
]
default-features = false

[dependencies.enough]
version = "0.4"
default-features = false

[dependencies.safe_unaligned_simd]
version = "0.2"
default-features = false

[dev-dependencies.codec-corpus]
version = "1"

[dev-dependencies.crc32fast]
version = "1"

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

[dev-dependencies.fdeflate]
version = "0.3"

[dev-dependencies.flate2]
version = "1.1"
features = ["zlib-rs"]
default-features = false

[dev-dependencies.libdeflater]
version = "1.25"

[dev-dependencies.miniz_oxide]
version = "0.8"

[dev-dependencies.png]
version = "0.17"

[dev-dependencies.simd-adler32]
version = "0.3"

[dev-dependencies.zlib-rs]
version = "0.6"