[package]
name = "futures-util-preview"
version = "0.2.2"
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.
"""
[lib]
name = "futures_util"
[features]
std = ["futures-core-preview/std", "futures-io-preview/std", "futures-sink-preview/std", "either/use_std"]
default = ["std", "futures-core-preview/either", "futures-sink-preview/either"]
bench = []
[dependencies]
futures-core-preview = { path = "../futures-core", version = "0.2.2", default-features = false }
futures-channel-preview = { path = "../futures-channel", version = "0.2.2", default-features = false }
futures-io-preview = { path = "../futures-io", version = "0.2.2", default-features = false }
futures-sink-preview = { path = "../futures-sink", version = "0.2.2", default-features = false}
either = { version = "1.4", default-features = false }