A simple reverse proxy for use with Hyper and Tokio
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hyper-reverse-proxy/Cargo.toml

51 lines
1.4 KiB

7 years ago
[package]
name = "hyper-reverse-proxy"
version = "0.5.2-dev"
authors = [
"Brendan Zabarauskas <bjzaba@yahoo.com.au>",
"Felipe Noronha <felipenoris@gmail.com>",
"Jan Kantert <jan-hyper-reverse-proxy@kantert.net>",
]
7 years ago
license = "Apache-2.0"
description = "A simple reverse proxy, to be used with Hyper and Tokio."
homepage = "https://github.com/felipenoris/hyper-reverse-proxy"
7 years ago
documentation = "https://docs.rs/hyper-reverse-proxy"
repository = "https://github.com/felipenoris/hyper-reverse-proxy"
7 years ago
keywords = ["http", "hyper"]
categories = ["network-programming", "web-programming"]
readme = "README.md"
edition = "2018"
7 years ago
include = ["Cargo.toml", "LICENSE", "src/**/*"]
7 years ago
[[bench]]
name="internal"
harness = false
7 years ago
[dependencies]
http-body-util = "0.1.0"
hyper = { version = "1.2.0", features = ["client", "http1"] }
hyper-util = { version = "0.1.3", features = ["client-legacy", "http1","tokio"] }
2 years ago
lazy_static = "1.4.0"
tokio = { version = "1.17.0", features = ["io-util", "rt"] }
tracing = "0.1.34"
[dev-dependencies]
hyper = { version = "1.2.0", features = ["client", "http1", "server"] }
2 years ago
futures = "0.3.21"
async-trait = "0.1.53"
2 years ago
async-tungstenite = { version = "0.17", features = ["tokio-runtime"] }
tokio-test = "0.4.2"
test-context = "0.1.3"
2 years ago
tokiotest-httpserver = "0.2.1"
rand = "0.8.5"
2 years ago
tungstenite = "0.17"
url = "2.2"
criterion = "0.3.5"
hyper-rustls = "0.27.1"
rustls = "0.23.6"
[features]
__bench=[]