tower/Cargo.toml

25 lines
504 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"
[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"