flate2 1.0.25

DEFLATE compression and decompression exposed as Read/BufRead/Write streams. Supports miniz_oxide and multiple zlib implementations. Supports zlib, gzip, and raw deflate streams.
Documentation
[dependencies.cloudflare-zlib-sys]
optional = true
version = "0.3.0"

[dependencies.crc32fast]
version = "1.2.0"

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

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

[dependencies.miniz_oxide]
default-features = false
features = ["with-alloc"]
optional = true
version = "0.6.0"
[dev-dependencies.quickcheck]
default-features = false
version = "1.0"

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

[features]
any_zlib = []
cloudflare_zlib = ["any_zlib", "cloudflare-zlib-sys"]
default = ["rust_backend"]
miniz-sys = ["rust_backend"]
rust_backend = ["miniz_oxide"]
zlib = ["any_zlib", "libz-sys"]
zlib-ng = ["any_zlib", "libz-ng-sys"]
zlib-ng-compat = ["zlib", "libz-sys/zlib-ng"]

[package]
authors = ["Alex Crichton <alex@alexcrichton.com>", "Josh Triplett <josh@joshtriplett.org>"]
categories = ["compression", "api-bindings"]
description = "DEFLATE compression and decompression exposed as Read/BufRead/Write streams.\nSupports miniz_oxide and multiple zlib implementations. Supports zlib, gzip,\nand raw deflate streams.\n"
documentation = "https://docs.rs/flate2"
edition = "2018"
homepage = "https://github.com/rust-lang/flate2-rs"
keywords = ["gzip", "deflate", "zlib", "zlib-ng", "encoding"]
license = "MIT OR Apache-2.0"
name = "flate2"
readme = "README.md"
repository = "https://github.com/rust-lang/flate2-rs"
version = "1.0.25"
[target."cfg(all(target_arch = \"wasm32\", not(target_os = \"emscripten\")))".dependencies.miniz_oxide]
default-features = false
features = ["with-alloc"]
version = "0.6.0"