• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# 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
6# to registry (e.g., crates.io) dependencies
7#
8# If you believe there's an error in this file please file an
9# issue against the rust-lang/cargo repository. If you're
10# editing this file be aware that the upstream Cargo.toml
11# will likely look very different (and much more reasonable)
12
13[package]
14edition = "2018"
15name = "futures-executor"
16version = "0.3.13"
17authors = ["Alex Crichton <alex@alexcrichton.com>"]
18description = "Executors for asynchronous tasks based on the futures-rs library.\n"
19homepage = "https://rust-lang.github.io/futures-rs"
20documentation = "https://docs.rs/futures-executor/0.3"
21license = "MIT OR Apache-2.0"
22repository = "https://github.com/rust-lang/futures-rs"
23[package.metadata.docs.rs]
24all-features = true
25rustdoc-args = ["--cfg", "docsrs"]
26[dependencies.futures-core]
27version = "0.3.13"
28default-features = false
29
30[dependencies.futures-task]
31version = "0.3.13"
32default-features = false
33
34[dependencies.futures-util]
35version = "0.3.13"
36default-features = false
37
38[dependencies.num_cpus]
39version = "1.8.0"
40optional = true
41
42[dev-dependencies]
43
44[features]
45default = ["std"]
46std = ["futures-core/std", "futures-task/std", "futures-util/std"]
47thread-pool = ["std", "num_cpus"]
48