futures-executor 0.3.31

Executors for asynchronous tasks based on the futures-rs library.
Documentation
[[bench]]
name = "thread_notify"
path = "benches/thread_notify.rs"

[dependencies.futures-core]
default-features = false
version = "0.3.31"

[dependencies.futures-task]
default-features = false
version = "0.3.31"

[dependencies.futures-util]
default-features = false
version = "0.3.31"

[dependencies.num_cpus]
optional = true
version = "1.8.0"

[dev-dependencies]

[features]
default = ["std"]
std = ["futures-core/std", "futures-task/std", "futures-util/std"]
thread-pool = ["std", "num_cpus"]

[lib]
name = "futures_executor"
path = "src/lib.rs"

[lints.rust]
missing_debug_implementations = "warn"
rust_2018_idioms = "warn"
single_use_lifetimes = "warn"
unreachable_pub = "warn"

[lints.rust.unexpected_cfgs]
check-cfg = ["cfg(futures_sanitizer)"]
level = "warn"
priority = 0

[package]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
description = """
Executors for asynchronous tasks based on the futures-rs library.
"""
edition = "2018"
homepage = "https://rust-lang.github.io/futures-rs"
license = "MIT OR Apache-2.0"
name = "futures-executor"
readme = "README.md"
repository = "https://github.com/rust-lang/futures-rs"
rust-version = "1.56"
version = "0.3.31"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[[test]]
name = "local_pool"
path = "tests/local_pool.rs"