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