futures-util 0.2.1

Common utilities and extension traits for the futures-rs library.
Documentation
[package]
name = "futures-util"
version = "0.2.1"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/rust-lang-nursery/futures-rs"
homepage = "https://github.com/rust-lang-nursery/futures-rs"
documentation = "https://docs.rs/futures-core"
description = """
Common utilities and extension traits for the futures-rs library.
"""

[features]
std = ["futures-core/std", "futures-io/std", "futures-sink/std", "either/use_std"]
default = ["std", "futures-core/either", "futures-sink/either"]
bench = []

[dependencies]
futures-core = { path = "../futures-core", version = "0.2.1", default-features = false }
futures-channel = { path = "../futures-channel", version = "0.2.1", default-features = false }
futures-io = { path = "../futures-io", version = "0.2.1", default-features = false }
futures-sink = { path = "../futures-sink", version = "0.2.1", default-features = false}
either = { version = "1.4", default-features = false }

[dev-dependencies]