2017-07-15 06:23:12 +00:00
|
|
|
[package]
|
|
|
|
name = "hyper-reverse-proxy"
|
2020-05-03 10:39:49 +00:00
|
|
|
version = "0.5.0"
|
|
|
|
authors = ["Brendan Zabarauskas <bjzaba@yahoo.com.au>", "Felipe Noronha <felipenoris@gmail.com>", "Jan Kantert <jan-hyper-reverse-proxy@kantert.net>"]
|
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"
|
2019-03-11 17:12:28 +00:00
|
|
|
edition = "2018"
|
2017-07-15 06:23:12 +00:00
|
|
|
|
|
|
|
include = [
|
|
|
|
"Cargo.toml",
|
|
|
|
"LICENSE",
|
|
|
|
"src/**/*"
|
|
|
|
]
|
|
|
|
|
|
|
|
[dependencies]
|
2022-02-03 22:25:12 +00:00
|
|
|
hyper = { version = "0.14", features = ["full"] }
|
2020-05-03 10:39:49 +00:00
|
|
|
lazy_static = "1.4"
|
|
|
|
unicase = "2.6"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-02-09 10:47:42 +00:00
|
|
|
tokio = { version = "1", features = ["full"] }
|