36 lines
836 B
TOML
36 lines
836 B
TOML
[package]
|
|
name = "proxy-inspector"
|
|
version = "0.2.1"
|
|
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.40", 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"
|
|
p384 = "0.13"
|
|
p521 = "0.13"
|
|
once_cell = "1.19"
|
|
bytes = "1.7"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tokio-dns-unofficial = "0.4"
|
|
trust-dns-resolver = { version = "0.23", features = ["tokio"] }
|
|
hex = "0.4"
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
opt-level = 'z'
|
|
lto = true
|
|
panic = 'abort'
|
|
strip = true
|