futures 0.3.6

An implementation of futures and streams featuring zero allocations, composability, and iterator-like interfaces.
Documentation
[badges.travis-ci]
repository = "rust-lang/futures-rs"
[dependencies.futures-channel]
default-features = false
features = ["sink"]
version = "0.3.6"

[dependencies.futures-core]
default-features = false
version = "0.3.6"

[dependencies.futures-executor]
default-features = false
optional = true
version = "0.3.6"

[dependencies.futures-io]
default-features = false
version = "0.3.6"

[dependencies.futures-sink]
default-features = false
version = "0.3.6"

[dependencies.futures-task]
default-features = false
version = "0.3.6"

[dependencies.futures-util]
default-features = false
features = ["sink"]
version = "0.3.6"

[features]
alloc = ["futures-core/alloc", "futures-task/alloc", "futures-sink/alloc", "futures-channel/alloc", "futures-util/alloc"]
async-await = ["futures-util/async-await", "futures-util/async-await-macro"]
bilock = ["futures-util/bilock"]
cfg-target-has-atomic = ["futures-core/cfg-target-has-atomic", "futures-task/cfg-target-has-atomic", "futures-channel/cfg-target-has-atomic", "futures-util/cfg-target-has-atomic"]
compat = ["std", "futures-util/compat"]
default = ["std", "async-await", "executor"]
executor = ["std", "futures-executor/std"]
io-compat = ["compat", "futures-util/io-compat"]
read-initializer = ["futures-io/read-initializer", "futures-util/read-initializer"]
std = ["alloc", "futures-core/std", "futures-task/std", "futures-io/std", "futures-sink/std", "futures-util/std", "futures-util/io", "futures-util/channel"]
thread-pool = ["executor", "futures-executor/thread-pool"]
unstable = ["futures-core/unstable", "futures-task/unstable", "futures-channel/unstable", "futures-io/unstable", "futures-util/unstable"]
write-all-vectored = ["futures-util/write-all-vectored"]

[package]
authors = ["Alex Crichton <alex@alexcrichton.com>"]
categories = ["asynchronous"]
description = "An implementation of futures and streams featuring zero allocations,\ncomposability, and iterator-like interfaces.\n"
documentation = "https://docs.rs/futures/0.3.6"
edition = "2018"
homepage = "https://rust-lang.github.io/futures-rs"
keywords = ["futures", "async", "future"]
license = "MIT OR Apache-2.0"
name = "futures"
readme = "../README.md"
repository = "https://github.com/rust-lang/futures-rs"
version = "0.3.6"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[package.metadata.playground]
features = ["std", "async-await", "compat", "io-compat", "executor", "thread-pool"]