mirror of
https://github.com/sadoyan/aralez.git
synced 2026-04-29 22:38:36 +08:00
49 lines
1.3 KiB
TOML
49 lines
1.3 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.51.1", features = ["full"] }
|
|
pingora = { version = "0.8.0", features = ["lb", "openssl"] } # openssl, rustls, boringssl
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
dashmap = "7.0.0-rc2"
|
|
pingora-core = "0.8.0"
|
|
pingora-proxy = "0.8.0"
|
|
pingora-http = "0.8.0"
|
|
pingora-limits = "0.8.0"
|
|
async-trait = "0.1.89"
|
|
env_logger = "0.11.10"
|
|
log = "0.4.29"
|
|
futures = "0.3.32"
|
|
notify = "9.0.0-rc.2"
|
|
axum = { version = "0.8.8" }
|
|
reqwest = { version = "0.13.2", features = ["json", "stream", "blocking"] }
|
|
serde_yml = "0.0.12"
|
|
rand = "0.10.0"
|
|
base64 = "0.22.1"
|
|
jsonwebtoken = { version = "10.3.0", default-features = false, features = ["use_pem", "rust_crypto"] }
|
|
tonic = "0.14.5"
|
|
sha2 = { version = "0.11.0-rc.5", default-features = false }
|
|
base16ct = { version = "1.0.0", features = ["alloc"] }
|
|
urlencoding = "2.1.3"
|
|
arc-swap = "1.9.1"
|
|
mimalloc = { version = "0.1.48", default-features = false }
|
|
prometheus = "0.14.0"
|
|
x509-parser = "0.18.1"
|
|
rustls-pemfile = "2.2.0"
|
|
tower-http = { version = "0.6.8", features = ["fs"] }
|
|
privdrop = "0.5.6"
|
|
ctrlc = "3.5.2"
|
|
serde_json = "1.0.149"
|
|
subtle = "2.6.1"
|
|
moka = { version = "0.12.1", features = ["sync"] }
|
|
ahash = "0.8.12"
|