mirror of
https://github.com/sadoyan/aralez.git
synced 2026-04-30 14:58:38 +08:00
56 lines
1.6 KiB
TOML
56 lines
1.6 KiB
TOML
[package]
|
|
name = "aralez"
|
|
version = "0.9.2"
|
|
edition = "2021"
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
strip = true
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.45.1", features = ["full"] }
|
|
pingora = { version = "0.6.0", features = ["lb", "openssl"] } # openssl, rustls, boringssl
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
dashmap = "7.0.0-rc2"
|
|
pingora-core = "0.6.0"
|
|
pingora-proxy = "0.6.0"
|
|
pingora-http = "0.6.0"
|
|
pingora-limits = "0.6.0"
|
|
async-trait = "0.1.89"
|
|
env_logger = "0.11.8"
|
|
log = "0.4.28"
|
|
futures = "0.3.31"
|
|
notify = "8.2.0"
|
|
axum = { version = "0.8.4" }
|
|
axum-server = { version = "0.7.2", features = ["tls-openssl"] }
|
|
reqwest = { version = "0.12.23", features = ["json", "native-tls-alpn", "stream"] }
|
|
#reqwest = { version = "0.12.15", features = ["json", "rustls-tls"] }
|
|
#reqwest = { version = "0.12.15", default-features = false, features = ["rustls-tls", "json"] }
|
|
|
|
serde_yaml = "0.9.34-deprecated"
|
|
rand = "0.9.2"
|
|
base64 = "0.22.1"
|
|
jsonwebtoken = "9.3.1"
|
|
tonic = "0.14.2"
|
|
sha2 = { version = "0.11.0-rc.2", default-features = false }
|
|
base16ct = { version = "0.3.0", features = ["alloc"] }
|
|
urlencoding = "2.1.3"
|
|
arc-swap = "1.7.1"
|
|
mimalloc = { version = "0.1.48", default-features = false }
|
|
prometheus = "0.14.0"
|
|
lazy_static = "1.5.0"
|
|
x509-parser = "0.18.0"
|
|
rustls-pemfile = "2.2.0"
|
|
tower-http = { version = "0.6.6", features = ["fs"] }
|
|
once_cell = "1.21.3"
|
|
privdrop = "0.5.6"
|
|
ctrlc = "3.5.0"
|
|
port_check = "0.3.0"
|
|
#moka = { version = "0.12.10", features = ["sync"] }
|
|
#rustls = { version = "0.23.27", features = ["ring"] }
|
|
#hickory-client = { version = "0.25.2" }
|
|
#openssl = "0.10.73"
|