28 lines
753 B
TOML
28 lines
753 B
TOML
[package]
|
|
name = "proxy-inspector"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
pingora = { version = "0.1", features = ["proxy"] }
|
|
tokio = { version = "1.36", features = ["rt-multi-thread", "signal"] }
|
|
pretty_env_logger = "0.5"
|
|
async-trait = "0.1"
|
|
log = "0.4"
|
|
http = "1.1"
|
|
structopt = "0.3"
|
|
base64 = "0.22"
|
|
rcgen = { version = "0.12", features = ["zeroize", "x509-parser"] }
|
|
time = "0.3"
|
|
p256 = "0.13.2"
|
|
p384 = "0.13.0"
|
|
p521 = "0.13.3"
|
|
once_cell = "1.19.0"
|
|
bytes = "1.6.0"
|
|
serde = { version = "1.0.197", features = ["derive"] }
|
|
serde_json = "1.0.115"
|
|
tokio-dns-unofficial = "0.4.0"
|
|
trust-dns-resolver = { version = "0.23.2", features = ["tokio"] }
|