You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1008 B
31 lines
1008 B
[package]
|
|
name = "futures-executor"
|
|
edition = "2018"
|
|
version = "0.3.13"
|
|
authors = ["Alex Crichton <alex@alexcrichton.com>"]
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/rust-lang/futures-rs"
|
|
homepage = "https://rust-lang.github.io/futures-rs"
|
|
documentation = "https://docs.rs/futures-executor/0.3"
|
|
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.13", default-features = false }
|
|
futures-task = { path = "../futures-task", version = "0.3.13", default-features = false }
|
|
futures-util = { path = "../futures-util", version = "0.3.13", 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"]
|