-
Notifications
You must be signed in to change notification settings - Fork 18
/
Cargo.toml
32 lines (29 loc) · 1017 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "warp-reverse-proxy"
version = "1.0.0"
authors = ["danielsanchezq <[email protected]>"]
edition = "2018"
license-file = "LICENSE"
homepage = "https://github.com/danielSanchezQ/warp-reverse-proxy"
repository = "https://github.com/danielSanchezQ/warp-reverse-proxy"
description = "Warp filter that acts as a reverse proxy, forwarding the request to a proxy address and extracting a response."
readme = "README.md"
keywords = ["warp", "proxy", "reverse", "filter"]
categories = ["web-programming", "web-programming::http-server"]
exclude = [
".github",
]
[dependencies]
hyper = "1.1"
once_cell = "1.16"
reqwest = { version = "0.11", default-features = false, features = ["stream"] }
thiserror = "1.0"
unicase = "2.6"
warp = { version = "0.3", default-features = false }
[dev-dependencies]
bytes = "1.0"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
[features]
default = ["default-tls"]
default-tls = ["reqwest/default-tls"]
rustls-tls = ["reqwest/rustls-tls"]