blob: 4b79bba17ca78ae2841a91a6ac1797c4f677fab0 [file] [log] [blame]
Jason Macnakf4a8bd22020-03-19 20:54:21 +00001# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
3# When uploading crates to the registry Cargo will automatically
4# "normalize" Cargo.toml files for maximal compatibility
5# with all versions of Cargo and also rewrite `path` dependencies
Joel Galenson9b8ea342021-08-09 10:30:18 -07006# to registry (e.g., crates.io) dependencies.
Jason Macnakf4a8bd22020-03-19 20:54:21 +00007#
Joel Galenson9b8ea342021-08-09 10:30:18 -07008# If you are reading this file be aware that the original Cargo.toml
9# will likely look very different (and much more reasonable).
10# See Cargo.toml.orig for the original contents.
Jason Macnakf4a8bd22020-03-19 20:54:21 +000011
12[package]
13edition = "2018"
David LeGare2b7452c2022-03-02 16:21:13 +000014rust-version = "1.45"
Jason Macnakf4a8bd22020-03-19 20:54:21 +000015name = "futures-executor"
David LeGare2b7452c2022-03-02 16:21:13 +000016version = "0.3.21"
17description = """
18Executors for asynchronous tasks based on the futures-rs library.
19"""
Jason Macnakf4a8bd22020-03-19 20:54:21 +000020homepage = "https://rust-lang.github.io/futures-rs"
Jason Macnakf4a8bd22020-03-19 20:54:21 +000021license = "MIT OR Apache-2.0"
22repository = "https://github.com/rust-lang/futures-rs"
David LeGare2b7452c2022-03-02 16:21:13 +000023
Jason Macnakf4a8bd22020-03-19 20:54:21 +000024[package.metadata.docs.rs]
25all-features = true
David LeGare2b7452c2022-03-02 16:21:13 +000026rustdoc-args = [
27 "--cfg",
28 "docsrs",
29]
30
Jason Macnakf4a8bd22020-03-19 20:54:21 +000031[dependencies.futures-core]
David LeGare2b7452c2022-03-02 16:21:13 +000032version = "0.3.21"
Jason Macnakf4a8bd22020-03-19 20:54:21 +000033default-features = false
34
35[dependencies.futures-task]
David LeGare2b7452c2022-03-02 16:21:13 +000036version = "0.3.21"
Jason Macnakf4a8bd22020-03-19 20:54:21 +000037default-features = false
38
39[dependencies.futures-util]
David LeGare2b7452c2022-03-02 16:21:13 +000040version = "0.3.21"
Jason Macnakf4a8bd22020-03-19 20:54:21 +000041default-features = false
42
43[dependencies.num_cpus]
44version = "1.8.0"
45optional = true
46
Haibo Huangedb6aa22021-02-09 17:06:48 -080047[dev-dependencies]
48
Jason Macnakf4a8bd22020-03-19 20:54:21 +000049[features]
50default = ["std"]
David LeGare2b7452c2022-03-02 16:21:13 +000051std = [
52 "futures-core/std",
53 "futures-task/std",
54 "futures-util/std",
55]
56thread-pool = [
57 "std",
58 "num_cpus",
59]