blob: 8d446947b14dfc648396e81c9720e3f4d60050af [file] [log] [blame]
Jason Macnakcfe7f772020-03-18 01:43:24 +00001[package]
2name = "futures-io"
David LeGared461c4b2022-03-02 16:21:14 +00003version = "0.3.21"
Jason Macnakcfe7f772020-03-18 01:43:24 +00004edition = "2018"
David LeGared461c4b2022-03-02 16:21:14 +00005rust-version = "1.36"
Jason Macnakcfe7f772020-03-18 01:43:24 +00006license = "MIT OR Apache-2.0"
7repository = "https://github.com/rust-lang/futures-rs"
8homepage = "https://rust-lang.github.io/futures-rs"
Jason Macnakcfe7f772020-03-18 01:43:24 +00009description = """
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 = []
Jason Macnakcfe7f772020-03-18 01:43:24 +000021
22[dependencies]
23
24[package.metadata.docs.rs]
25all-features = true
Chih-Hung Hsieh91ff4c92020-10-25 23:16:21 -070026rustdoc-args = ["--cfg", "docsrs"]