tower/Cargo.toml

42 lines
800 B
TOML
Raw Normal View History

2016-08-26 16:26:03 -07:00
[package]
2017-07-25 10:42:33 -07:00
name = "tower"
2016-08-26 16:26:03 -07:00
version = "0.1.0"
license = "MIT/Apache-2.0"
authors = ["Carl Lerche <me@carllerche.com>"]
description = """
2017-07-25 10:42:33 -07:00
An extensible request / response system, used to construct high-concurrency
servers and clients.
2016-08-26 16:26:03 -07:00
"""
2017-07-25 10:42:33 -07:00
documentation = "https://docs.rs/tower"
homepage = "https://tower.rs"
repository = "https://github.com/tower-rs/tower"
2016-08-26 16:26:03 -07:00
readme = "README.md"
2017-10-03 10:03:14 -07:00
[workspace]
members = [
"./",
"tower-balance",
"tower-discover",
2017-10-03 10:03:14 -07:00
"tower-filter",
"tower-mock",
"tower-rate-limit",
"tower-reconnect",
2017-10-03 10:03:14 -07:00
"tower-route",
"tower-timeout",
]
2016-08-26 16:26:03 -07:00
[dependencies]
2016-11-23 08:34:19 -08:00
futures = "0.1"
[dev-dependencies]
log = "0.3"
env_logger = "0.4"
tokio-timer = "0.1"
futures-cpupool = "0.1"
2017-10-03 10:03:14 -07:00
[replace]
"futures:0.1.16" = { git = "https://github.com/carllerche/futures-rs", branch = "test-harness" }