[package] name = "hyper-reverse-proxy" version = "0.5.2-dev" authors = ["Brendan Zabarauskas ", "Felipe Noronha ", "Jan Kantert "] license = "Apache-2.0" description = "A simple reverse proxy, to be used with Hyper and Tokio." homepage = "https://github.com/felipenoris/hyper-reverse-proxy" documentation = "https://docs.rs/hyper-reverse-proxy" repository = "https://github.com/felipenoris/hyper-reverse-proxy" keywords = ["http", "hyper"] categories = ["network-programming", "web-programming"] readme = "README.md" edition = "2018" include = [ "Cargo.toml", "LICENSE", "src/**/*" ] [dependencies] hyper = { version = "0.14", features = ["full"] } lazy_static = "1.4" hyper-tls = { version = "0.5", optional = true } rand = "0.8.5" [dev-dependencies] tokio = { version = "1", features = ["full"] } futures = "0.3" async-trait = "0.1" tokio-test = "0.4.2" test-context = "0.1.3" tokiotest-httpserver = "0.2.0" [features] https = ["hyper-tls"] default = ["https"]