blob: 4a360f8a4207eb6623aaeeb6abacc8aac95d2cfd [file] [log] [blame]
Jason Macnakcf378132020-03-18 01:31:42 +00001[package]
2name = "futures-core"
David LeGarecc5e5342022-03-02 16:21:09 +00003version = "0.3.21"
Jason Macnakcf378132020-03-18 01:31:42 +00004edition = "2018"
David LeGarecc5e5342022-03-02 16:21:09 +00005rust-version = "1.36"
Jason Macnakcf378132020-03-18 01:31:42 +00006license = "MIT OR Apache-2.0"
7repository = "https://github.com/rust-lang/futures-rs"
8homepage = "https://rust-lang.github.io/futures-rs"
Jason Macnakcf378132020-03-18 01:31:42 +00009description = """
10The core traits and types in for the `futures` library.
11"""
12
13[features]
14default = ["std"]
15std = ["alloc"]
16alloc = []
17
Joel Galensond36e5672021-05-19 15:13:55 -070018# These features are no longer used.
19# TODO: remove in the next major version.
Jason Macnakcf378132020-03-18 01:31:42 +000020unstable = []
21cfg-target-has-atomic = []
22
23[dependencies]
24
Stephen Hines403f0352021-03-04 09:39:54 -080025[dev-dependencies]
26futures = { path = "../futures" }
27
Jason Macnakcf378132020-03-18 01:31:42 +000028[package.metadata.docs.rs]
29all-features = true
Chih-Hung Hsieha1bd5292020-10-25 23:16:21 -070030rustdoc-args = ["--cfg", "docsrs"]