[package]
name = "futures-executor-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 = """
Executors for asynchronous tasks based on the futures-rs library.
"""
[lib]
name = "futures_executor"
[features]
std = ["num_cpus", "futures-core-preview/std", "futures-util-preview/std", "futures-channel-preview/std", "lazy_static"]
default = ["std"]
[dependencies]
futures-core-preview = { path = "../futures-core", version = "0.2.2", default-features = false}
futures-util-preview = { path = "../futures-util", version = "0.2.2", default-features = false}
futures-channel-preview = { path = "../futures-channel", version = "0.2.2", default-features = false}
num_cpus = { version = "1.0", optional = true }
lazy_static = { version = "1.0", optional = true }