1[package] 2name = "futures-executor" 3edition = "2018" 4version = "0.3.13" 5authors = ["Alex Crichton <alex@alexcrichton.com>"] 6license = "MIT OR Apache-2.0" 7repository = "https://github.com/rust-lang/futures-rs" 8homepage = "https://rust-lang.github.io/futures-rs" 9documentation = "https://docs.rs/futures-executor/0.3" 10description = """ 11Executors for asynchronous tasks based on the futures-rs library. 12""" 13 14[features] 15default = ["std"] 16std = ["futures-core/std", "futures-task/std", "futures-util/std"] 17thread-pool = ["std", "num_cpus"] 18 19[dependencies] 20futures-core = { path = "../futures-core", version = "0.3.13", default-features = false } 21futures-task = { path = "../futures-task", version = "0.3.13", default-features = false } 22futures-util = { path = "../futures-util", version = "0.3.13", default-features = false } 23num_cpus = { version = "1.8.0", optional = true } 24 25[dev-dependencies] 26futures = { path = "../futures" } 27 28[package.metadata.docs.rs] 29all-features = true 30rustdoc-args = ["--cfg", "docsrs"] 31