1[package] 2name = "futures-io" 3version = "0.3.21" 4edition = "2018" 5rust-version = "1.36" 6license = "MIT OR Apache-2.0" 7repository = "https://github.com/rust-lang/futures-rs" 8homepage = "https://rust-lang.github.io/futures-rs" 9description = """ 10The `AsyncRead`, `AsyncWrite`, `AsyncSeek`, and `AsyncBufRead` traits for the futures-rs library. 11""" 12 13[features] 14default = ["std"] 15std = [] 16 17# Unstable features 18# These features are outside of the normal semver guarantees and require the 19# `unstable` feature as an explicit opt-in to unstable API. 20unstable = [] 21 22[dependencies] 23 24[package.metadata.docs.rs] 25all-features = true 26rustdoc-args = ["--cfg", "docsrs"] 27