async-compression 0.1.0-alpha.3

Adaptors between compression crates and Rust's modern asynchronous IO types.
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 believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

[package]
edition = "2018"
name = "async-compression"
version = "0.1.0-alpha.3"
authors = ["Wim Looman <wim@nemo157.com>", "Allen Bui <fairingrey@gmail.com>"]
description = "Adaptors between compression crates and Rust's modern asynchronous IO types.\n"
keywords = ["compression", "gzip", "zstd", "brotli", "async"]
categories = ["compression", "asynchronous"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rustasync/async-compression"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies.brotli2]
version = "0.3.2"
optional = true

[dependencies.bytes]
version = "0.4.12"
optional = true

[dependencies.flate2]
version = "1.0.7"
optional = true

[dependencies.futures-preview]
version = "0.3.0-alpha.18"

[dependencies.libzstd]
version = "0.4"
optional = true
default-features = false
package = "zstd"

[dependencies.pin-project]
version = "0.3.2"

[dependencies.zstd-safe]
version = "1.4"
optional = true
default-features = false
[dev-dependencies.futures-test-preview]
version = "0.3.0-alpha.18"

[dev-dependencies.pin-utils]
version = "0.1.0-alpha.4"

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

[dev-dependencies.proptest-derive]
version = "0.1.1"

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

[features]
brotli = ["brotli2"]
bufread = []
default = ["bufread", "stream", "brotli", "deflate", "gzip", "zlib", "zstd"]
deflate = ["flate2"]
gzip = ["flate2"]
stream = ["bytes"]
zlib = ["flate2"]
zstd = ["libzstd", "zstd-safe"]