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