Files
tokio/tokio-buf/Cargo.toml
T

35 lines
770 B
TOML
Raw Normal View History

2018-10-29 13:43:48 -07:00
[package]
name = "tokio-buf"
# When releasing to crates.io:
# - Remove path dependencies
2018-10-29 13:43:48 -07:00
# - Update html_root_url.
2019-02-23 21:58:47 -08:00
# - Update doc url
# - Cargo.toml
# - README.md
2018-10-29 13:43:48 -07:00
# - Update CHANGELOG.md.
2019-05-14 10:27:36 -07:00
# - Create "v0.2.x" git tag.
version = "0.2.0"
edition = "2018"
2018-10-29 13:43:48 -07:00
authors = ["Carl Lerche <[email protected]>"]
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
2019-04-22 15:12:25 -07:00
documentation = "https://docs.rs/tokio-buf/0.1.1/tokio_buf"
2018-10-29 13:43:48 -07:00
description = """
Asynchronous stream of byte buffers
"""
categories = ["asynchronous"]
2019-05-14 10:27:36 -07:00
publish = false
2018-10-29 13:43:48 -07:00
[dependencies]
2019-02-23 21:58:47 -08:00
bytes = "0.4.10"
either = { version = "1.5", optional = true}
2018-10-29 13:43:48 -07:00
futures = "0.1.23"
[features]
2019-02-23 10:17:21 -08:00
default = ["util"]
util = ["bytes/either", "either"]
2019-03-29 12:26:13 -07:00
[dev-dependencies]
tokio-mock-task = "0.1.1"