mirror of
https://github.com/rust-lang/futures-rs.git
synced 2026-01-25 03:26:14 +00:00
20 lines
592 B
TOML
20 lines
592 B
TOML
[package]
|
|
name = "futures-io"
|
|
version = "0.2.0"
|
|
authors = ["Alex Crichton <alex@alexcrichton.com>"]
|
|
license = "MIT/Apache-2.0"
|
|
repository = "https://github.com/alexcrichton/futures-rs"
|
|
homepage = "https://github.com/alexcrichton/futures-rs"
|
|
documentation = "https://docs.rs/futures-io"
|
|
description = """
|
|
The `AsyncRead` and `AsyncWrite` traits for the futures-rs library.
|
|
"""
|
|
|
|
[features]
|
|
std = ["futures-core/std", "iovec"]
|
|
default = ["std"]
|
|
|
|
[dependencies]
|
|
futures-core = { path = "../futures-core", version = "0.2.0", default-features = false }
|
|
iovec = { version = "0.1", optional = true }
|