mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-28 00:00:11 +02:00
- Rename feature flag `util`. - Rename module `util` - Move `error` module into `util`. - Move `BufStream` impls into dedicated file.
27 lines
615 B
TOML
27 lines
615 B
TOML
[package]
|
|
name = "tokio-buf"
|
|
|
|
# When releasing to crates.io:
|
|
# - Update html_root_url.
|
|
# - Update CHANGELOG.md.
|
|
# - Create "v0.1.x" git tag.
|
|
version = "0.1.0"
|
|
authors = ["Carl Lerche <[email protected]>"]
|
|
license = "MIT"
|
|
repository = "https://github.com/tokio-rs/tokio"
|
|
homepage = "https://tokio.rs"
|
|
documentation = "https://docs.rs/tokio-buf/0.1.0"
|
|
description = """
|
|
Asynchronous stream of byte buffers
|
|
"""
|
|
categories = ["asynchronous"]
|
|
|
|
[dependencies]
|
|
bytes = { version = "0.4.10" }
|
|
either = { version = "1.5", optional = true}
|
|
futures = "0.1.23"
|
|
|
|
[features]
|
|
default = ["util"]
|
|
util = ["bytes/either", "either"]
|