hyper-reverse-proxy/Cargo.toml

25 lines
684 B
TOML
Raw Normal View History

2017-07-15 06:23:12 +00:00
[package]
name = "hyper-reverse-proxy"
2018-11-24 15:27:20 +00:00
version = "0.3.0"
authors = ["Brendan Zabarauskas <bjzaba@yahoo.com.au>", "Felipe Noronha <felipenoris@gmail.com>"]
2017-07-15 06:23:12 +00:00
license = "Apache-2.0"
description = "A simple reverse proxy, to be used with Hyper and Tokio."
2018-11-24 15:27:20 +00:00
homepage = "https://github.com/felipenoris/hyper-reverse-proxy"
2017-07-15 06:23:12 +00:00
documentation = "https://docs.rs/hyper-reverse-proxy"
2018-11-24 15:27:20 +00:00
repository = "https://github.com/felipenoris/hyper-reverse-proxy"
2017-07-15 06:23:12 +00:00
keywords = ["http", "hyper"]
categories = ["network-programming", "web-programming"]
readme = "README.md"
include = [
"Cargo.toml",
"LICENSE",
"src/**/*"
]
[dependencies]
2019-02-16 17:20:18 +00:00
hyper = "0.12.24"
2018-11-24 15:27:20 +00:00
futures = "0.1"
2019-02-16 17:20:18 +00:00
lazy_static = "1.2"
2018-11-24 15:27:20 +00:00
unicase = "2.2"