[package]
name = "futures-util-preview"
edition = "2018"
version = "0.3.0-alpha.12"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang-nursery/futures-rs"
homepage = "https://rust-lang-nursery.github.io/futures-rs"
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.12/futures_util"
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", "futures-select-macro-preview/std", "either/use_std", "rand", "slab"]
default = ["std", "futures-core-preview/either", "futures-sink-preview/either"]
compat = ["std", "futures_01"]
io-compat = ["compat", "tokio-io"]
tokio-compat = ["compat", "tokio-executor"]
bench = []
nightly = []
[dependencies]
futures-core-preview = { path = "../futures-core", version = "=0.3.0-alpha.12", default-features = false }
futures-channel-preview = { path = "../futures-channel", version = "=0.3.0-alpha.12", default-features = false }
futures-io-preview = { path = "../futures-io", version = "=0.3.0-alpha.12", default-features = false }
futures-sink-preview = { path = "../futures-sink", version = "=0.3.0-alpha.12", default-features = false}
futures-select-macro-preview = { path = "../futures-select-macro", version = "=0.3.0-alpha.12", default-features = false }
either = { version = "1.4", default-features = false }
proc-macro-hack = "0.5"
proc-macro-nested = "0.1.2"
rand = { version = "0.5.5", optional = true }
slab = { version = "0.4", optional = true }
futures_01 = { version = "0.1.25", optional = true, package = "futures" }
tokio-executor = { version = "0.1.2", optional = true }
tokio-io = { version = "0.1.9", optional = true }
pin-utils = "0.1.0-alpha.4"