tower/Cargo.toml

39 lines
740 B
TOML

[package]
name = "tower"
version = "0.1.0"
license = "MIT/Apache-2.0"
authors = ["Carl Lerche <me@carllerche.com>"]
description = """
An extensible request / response system, used to construct high-concurrency
servers and clients.
"""
documentation = "https://docs.rs/tower"
homepage = "https://tower.rs"
repository = "https://github.com/tower-rs/tower"
readme = "README.md"
[workspace]
members = [
"./",
"tower-filter",
"tower-mock",
"tower-rate-limit",
"tower-route",
"tower-timeout",
]
[dependencies]
futures = "0.1"
[dev-dependencies]
log = "0.3"
env_logger = "0.4"
tokio-timer = "0.1"
futures-cpupool = "0.1"
[replace]
"futures:0.1.16" = { git = "https://github.com/carllerche/futures-rs", branch = "test-harness" }