tower/tower/Cargo.toml

44 lines
1.3 KiB
TOML
Raw Normal View History

2019-03-06 07:54:39 -08:00
[package]
name = "tower"
version = "0.1.0"
authors = ["Carl Lerche <me@carllerche.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/tower-rs/tower"
publish = false
description = """
Tower is a library of modular and reusable components for building robust
clients and servers.
"""
categories = ["asynchronous", "network-programming"]
keywords = ["io", "async", "non-blocking", "futures", "service"]
[features]
default = ["full"]
full = []
2019-03-15 10:53:19 -07:00
[dependencies]
futures = "0.1"
tower-service = "0.2"
tower-util = { version = "0.1.0", path = "../tower-util", features = ["io"] }
tower-layer = { version = "0.1", path = "../tower-layer" }
tower-limit = { version = "0.1.0", path = "../tower-limit" }
tower-retry = { version = "0.1", path = "../tower-retry" }
tower-buffer = { version = "0.1", path = "../tower-buffer" }
tower-load-shed = { version = "0.1", path = "../tower-load-shed" }
tower-discover = { version = "0.1", path = "../tower-discover" }
tower-reconnect = { version = "0.1", path = "../tower-reconnect" }
tower-timeout = { version = "0.1", path = "../tower-timeout" }
2019-03-15 10:53:19 -07:00
2019-03-06 07:54:39 -08:00
[dev-dependencies]
futures = "0.1"
tower-hyper = { git = "https://github.com/tower-rs/tower-hyper" }
tokio-tcp = "0.1"
hyper = "0.12"
2019-03-06 07:54:39 -08:00
log = "0.4.1"
tokio = "0.1"
2019-03-06 07:54:39 -08:00
env_logger = { version = "0.5.3", default-features = false }
tokio-timer = "0.1"
futures-cpupool = "0.1"
void = "1"