1 | [package] |
2 | name = "futures-task" |
3 | version = "0.3.30" |
4 | edition = "2018" |
5 | rust-version = "1.56" |
6 | license = "MIT OR Apache-2.0" |
7 | repository = "https://github.com/rust-lang/futures-rs" |
8 | homepage = "https://rust-lang.github.io/futures-rs" |
9 | description = "" " |
10 | Tools for working with tasks. |
11 | " "" |
12 | |
13 | [features] |
14 | default = ["std" ] |
15 | std = ["alloc" ] |
16 | alloc = [] |
17 | |
18 | # These features are no longer used. |
19 | # TODO: remove in the next major version. |
20 | unstable = [] |
21 | cfg-target-has-atomic = [] |
22 | |
23 | [dependencies] |
24 | |
25 | [dev-dependencies] |
26 | futures = { path = "../futures" } |
27 | |
28 | [package.metadata.docs.rs] |
29 | all-features = true |
30 | |