25 lines
616 B
TOML
25 lines
616 B
TOML
[package]
|
|
name = "proxmox-mtls-gateway"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
async-trait="0.1"
|
|
pingora-proxy = { path = "../pingora/pingora-proxy" }
|
|
pingora-core = { path = "../pingora/pingora-core" }
|
|
pingora-http = { path = "../pingora/pingora-http" }
|
|
log = "0.4"
|
|
clap = "3.2"
|
|
env_logger = "0.11"
|
|
urlencoding = "2.1.3"
|
|
bytes = "1.6.0"
|
|
|
|
reqwest = { version = "0.12", features = [ "json" ] }
|
|
url = "2.5.2"
|
|
serde = "1.0.210"
|
|
serde_urlencoded = "0.7.1"
|
|
toml = "0.8.19"
|
|
http = "1.1.0"
|
|
serde_json = "1.0.128"
|