| [package] |
| name = "futures-executor" |
| version = "0.3.21" |
| edition = "2018" |
| rust-version = "1.45" |
| license = "MIT OR Apache-2.0" |
| repository = "https://github.com/rust-lang/futures-rs" |
| homepage = "https://rust-lang.github.io/futures-rs" |
| description = """ |
| Executors for asynchronous tasks based on the futures-rs library. |
| """ |
| |
| [features] |
| default = ["std"] |
| std = ["futures-core/std", "futures-task/std", "futures-util/std"] |
| thread-pool = ["std", "num_cpus"] |
| |
| [dependencies] |
| futures-core = { path = "../futures-core", version = "0.3.21", default-features = false } |
| futures-task = { path = "../futures-task", version = "0.3.21", default-features = false } |
| futures-util = { path = "../futures-util", version = "0.3.21", default-features = false } |
| num_cpus = { version = "1.8.0", optional = true } |
| |
| [dev-dependencies] |
| futures = { path = "../futures" } |
| |
| [package.metadata.docs.rs] |
| all-features = true |
| rustdoc-args = ["--cfg", "docsrs"] |