libflate 2.3.0

A Rust implementation of DEFLATE algorithm and related formats (ZLIB, GZIP)
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 = "libflate"
version = "2.3.0"
build = false
include = [
    "Cargo.toml",
    "README.md",
    "LICENSE",
    "src/**/*.rs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust implementation of DEFLATE algorithm and related formats (ZLIB, GZIP)"
homepage = "https://github.com/sile/libflate"
readme = "README.md"
keywords = [
    "deflate",
    "gzip",
    "zlib",
]
categories = [
    "compression",
    "no-std",
]
license = "MIT"
repository = "https://github.com/sile/libflate"

[features]
default = ["std"]
std = [
    "libflate_lz77/std",
    "no_std_io2/std",
]

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

[dependencies.adler32]
version = "1"
default-features = false

[dependencies.crc32fast]
version = "1.1.1"
default-features = false

[dependencies.dary_heap]
version = "0.3.5"

[dependencies.libflate_lz77]
version = "2.3.0"
default-features = false

[dependencies.no_std_io2]
version = "0.9"
features = ["alloc"]
default-features = false

[dev-dependencies.clap]
version = "4"
features = ["derive"]

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(fuzzing)"]