blob: dae5f22e77c9b75426c85688d87fd58f215a330d [file] [log] [blame]
Jason Macnakf4a8bd22020-03-19 20:54:21 +00001[package]
2name = "futures-executor"
David LeGare2b7452c2022-03-02 16:21:13 +00003version = "0.3.21"
Jason Macnakf4a8bd22020-03-19 20:54:21 +00004edition = "2018"
David LeGare2b7452c2022-03-02 16:21:13 +00005rust-version = "1.45"
Jason Macnakf4a8bd22020-03-19 20:54:21 +00006license = "MIT OR Apache-2.0"
7repository = "https://github.com/rust-lang/futures-rs"
8homepage = "https://rust-lang.github.io/futures-rs"
Jason Macnakf4a8bd22020-03-19 20:54:21 +00009description = """
10Executors for asynchronous tasks based on the futures-rs library.
11"""
12
13[features]
14default = ["std"]
15std = ["futures-core/std", "futures-task/std", "futures-util/std"]
16thread-pool = ["std", "num_cpus"]
17
18[dependencies]
David LeGare2b7452c2022-03-02 16:21:13 +000019futures-core = { path = "../futures-core", version = "0.3.21", default-features = false }
20futures-task = { path = "../futures-task", version = "0.3.21", default-features = false }
21futures-util = { path = "../futures-util", version = "0.3.21", default-features = false }
Jason Macnakf4a8bd22020-03-19 20:54:21 +000022num_cpus = { version = "1.8.0", optional = true }
23
Haibo Huangedb6aa22021-02-09 17:06:48 -080024[dev-dependencies]
25futures = { path = "../futures" }
26
Jason Macnakf4a8bd22020-03-19 20:54:21 +000027[package.metadata.docs.rs]
28all-features = true
Chih-Hung Hsieh3bb9be12020-10-25 23:16:21 -070029rustdoc-args = ["--cfg", "docsrs"]