blob: 76f2565cb24f9810aeb64ce79bca4974b6e9facb [file] [log] [blame]
Jason Macnakcfe7f772020-03-18 01:43:24 +00001[package]
2name = "futures-io"
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://docs.rs/futures-io/0.3.0"
10description = """
11The `AsyncRead`, `AsyncWrite`, `AsyncSeek`, and `AsyncBufRead` traits for the futures-rs library.
12"""
13
14[features]
15default = ["std"]
16std = []
17
18# Unstable features
19# These features are outside of the normal semver guarantees and require the
20# `unstable` feature as an explicit opt-in to unstable API.
21unstable = []
22read-initializer = []
23
24[dependencies]
25
26[package.metadata.docs.rs]
27all-features = true