blob: 0b4b62a4c87c965a6fa1eea05177267dd6c8c1e7 [file] [log] [blame]
Jason Macnakea22e812020-03-18 01:29:19 +00001[package]
2name = "futures-task"
3edition = "2018"
4version = "0.3.4"
5authors = ["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"
9documentation = "https://rust-lang.github.io/futures-api-docs/0.3.0-alpha.18/futures_core"
10description = """
11Tools for working with tasks.
12"""
13
14[features]
15default = ["std"]
16std = ["alloc"]
17alloc = []
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]
26
27[package.metadata.docs.rs]
28all-features = true