[package]
edition = "2018"
name = "warp-reverse-proxy"
version = "2.0.0"
authors = ["danielsanchezq <sanchez.quiros.daniel@gmail.com>"]
build = false
exclude = [".github"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Warp filter that acts as a reverse proxy, forwarding the request to a proxy address and extracting a response."
homepage = "https://github.com/danielSanchezQ/warp-reverse-proxy"
readme = "README.md"
keywords = [
"warp",
"proxy",
"reverse",
"filter",
]
categories = [
"web-programming",
"web-programming::http-server",
]
license-file = "LICENSE"
repository = "https://github.com/danielSanchezQ/warp-reverse-proxy"
[features]
default = ["default-tls"]
default-tls = ["reqwest/default-tls"]
rustls-tls = ["reqwest/rustls"]
[lib]
name = "warp_reverse_proxy"
path = "src/lib.rs"
[dependencies.hyper]
version = "1.9"
[dependencies.once_cell]
version = "1.21"
[dependencies.reqwest]
version = "0.13"
features = ["stream"]
default-features = false
[dependencies.thiserror]
version = "2.0"
[dependencies.unicase]
version = "2.9"
[dependencies.warp]
version = "0.4.3"
default-features = false
[dev-dependencies.bytes]
version = "1.0"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]
[dev-dependencies.warp]
version = "0.4.3"
features = [
"server",
"test",
]