tower/tower-buffer/Cargo.toml

39 lines
948 B
TOML
Raw Normal View History

2017-10-10 10:38:40 -07:00
[package]
name = "tower-buffer"
# When releasing to crates.io:
# - Remove path dependencies
# - Update html_root_url.
# - Update doc url
# - Cargo.toml
# - README.md
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
version = "0.1.1"
authors = ["Tower Maintainers <team@tower-rs.com>"]
2019-04-09 10:59:30 -07:00
license = "MIT"
2019-04-26 22:31:07 -07:00
readme = "README.md"
repository = "https://github.com/tower-rs/tower"
homepage = "https://github.com/tower-rs/tower"
documentation = "https://docs.rs/tower-buffer/0.1.1"
2019-04-26 22:31:07 -07:00
description = """
Buffer requests before dispatching to a `Service`.
"""
categories = ["asynchronous", "network-programming"]
2019-04-08 20:11:09 -07:00
edition = "2018"
2017-10-10 10:38:40 -07:00
[features]
log = ["tracing/log"]
default = ["log"]
2017-10-10 10:38:40 -07:00
[dependencies]
2019-03-25 10:56:12 -07:00
futures = "0.1.25"
tower-service = "0.2.0"
tower-layer = "0.1.0"
2019-03-25 10:56:12 -07:00
tokio-executor = "0.1.7"
tokio-sync = "0.1.0"
tracing = "0.1.2"
2017-10-10 10:38:40 -07:00
[dev-dependencies]
tower = { version = "0.1.0", path = "../tower" }
tower-test = { version = "0.1.0", path = "../tower-test" }