2026-02-09 10:55:46 +00:00
|
|
|
[package]
|
|
|
|
|
name = "rustproxy-http"
|
|
|
|
|
version.workspace = true
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
authors.workspace = true
|
|
|
|
|
description = "Hyper-based HTTP proxy service for RustProxy"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
rustproxy-config = { workspace = true }
|
|
|
|
|
rustproxy-routing = { workspace = true }
|
|
|
|
|
rustproxy-security = { workspace = true }
|
|
|
|
|
rustproxy-metrics = { workspace = true }
|
|
|
|
|
hyper = { workspace = true }
|
|
|
|
|
hyper-util = { workspace = true }
|
|
|
|
|
regex = { workspace = true }
|
2026-02-13 23:18:22 +00:00
|
|
|
http-body = { workspace = true }
|
2026-02-09 10:55:46 +00:00
|
|
|
http-body-util = { workspace = true }
|
|
|
|
|
bytes = { workspace = true }
|
|
|
|
|
tokio = { workspace = true }
|
|
|
|
|
tracing = { workspace = true }
|
|
|
|
|
thiserror = { workspace = true }
|
|
|
|
|
anyhow = { workspace = true }
|
|
|
|
|
arc-swap = { workspace = true }
|
|
|
|
|
dashmap = { workspace = true }
|
2026-02-13 16:57:46 +00:00
|
|
|
tokio-util = { workspace = true }
|