hyper-reverse-proxy/Cargo.toml

30 lines
731 B
TOML
Raw Normal View History

2017-07-15 06:23:12 +00:00
[package]
name = "hyper-reverse-proxy"
2017-07-15 08:41:28 +00:00
version = "0.2.1"
2017-07-15 06:23:12 +00:00
authors = ["Brendan Zabarauskas <bjzaba@yahoo.com.au>"]
license = "Apache-2.0"
description = "A simple reverse proxy, to be used with Hyper and Tokio."
homepage = "https://github.com/brendanzab/hyper-reverse-proxy"
documentation = "https://docs.rs/hyper-reverse-proxy"
repository = "https://github.com/brendanzab/hyper-reverse-proxy"
keywords = ["http", "hyper"]
categories = ["network-programming", "web-programming"]
readme = "README.md"
include = [
"Cargo.toml",
"LICENSE",
"src/**/*"
]
[dependencies]
futures = "0.1.14"
hyper = "0.11.0"
lazy_static = "0.2"
unicase = "2.0.0"
[dev-dependencies]
2017-07-15 08:41:28 +00:00
error-chain = "0.10.0"
tokio-core = "0.1.8"
2017-07-15 08:41:28 +00:00
tokio-signal = "0.1.2"