1[package] 2name = "futures-core" 3edition = "2018" 4version = "0.3.13" 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://docs.rs/futures-core/0.3" 10description = """ 11The core traits and types in for the `futures` library. 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[dev-dependencies] 28futures = { path = "../futures" } 29 30[package.metadata.docs.rs] 31all-features = true 32rustdoc-args = ["--cfg", "docsrs"] 33