You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
756 B
29 lines
756 B
[package]
|
|
name = "futures-io"
|
|
edition = "2018"
|
|
version = "0.3.13"
|
|
authors = ["Alex Crichton <alex@alexcrichton.com>"]
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/rust-lang/futures-rs"
|
|
homepage = "https://rust-lang.github.io/futures-rs"
|
|
documentation = "https://docs.rs/futures-io/0.3"
|
|
description = """
|
|
The `AsyncRead`, `AsyncWrite`, `AsyncSeek`, and `AsyncBufRead` traits for the futures-rs library.
|
|
"""
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = []
|
|
|
|
# Unstable features
|
|
# These features are outside of the normal semver guarantees and require the
|
|
# `unstable` feature as an explicit opt-in to unstable API.
|
|
unstable = []
|
|
read-initializer = []
|
|
|
|
[dependencies]
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|