1 | [package] |
2 | name = "futures-core" |
3 | version = "0.3.30" |
4 | edition = "2018" |
5 | rust-version = "1.36" |
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 | The core traits and types in for the `futures` library. |
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 | portable-atomic = { version = "1.3" , optional = true, default-features = false, features = ["require-cas" ] } |
25 | |
26 | [dev-dependencies] |
27 | futures = { path = "../futures" } |
28 | |
29 | [package.metadata.docs.rs] |
30 | all-features = true |
31 | rustdoc-args = ["--cfg" , "docsrs" ] |
32 | |