blob: fdf27cab878ba7ac7c98894982dbae2cee74b11e [file] [log] [blame]
Jason Macnakea22e812020-03-18 01:29:19 +00001[package]
2name = "futures-task"
3edition = "2018"
Haibo Huang66a594d2020-05-08 19:26:03 -07004version = "0.3.5"
Jason Macnakea22e812020-03-18 01:29:19 +00005authors = ["Alex Crichton <alex@alexcrichton.com>"]
6license = "MIT OR Apache-2.0"
7repository = "https://github.com/rust-lang/futures-rs"
8homepage = "https://rust-lang.github.io/futures-rs"
Haibo Huang66a594d2020-05-08 19:26:03 -07009documentation = "https://docs.rs/futures-task/0.3.5"
Jason Macnakea22e812020-03-18 01:29:19 +000010description = """
11Tools for working with tasks.
12"""
13
14[features]
15default = ["std"]
Haibo Huang66a594d2020-05-08 19:26:03 -070016std = ["alloc", "once_cell"]
Jason Macnakea22e812020-03-18 01:29:19 +000017alloc = []
18
19# Unstable features
20# These features are outside of the normal semver guarantees and require the
21# `unstable` feature as an explicit opt-in to unstable API.
22unstable = []
23cfg-target-has-atomic = []
24
25[dependencies]
Haibo Huang66a594d2020-05-08 19:26:03 -070026once_cell = { version = "1.3.1", default-features = false, features = ["std"], optional = true }
Jason Macnakea22e812020-03-18 01:29:19 +000027
28[package.metadata.docs.rs]
29all-features = true