mirror of
https://github.com/sadoyan/aralez.git
synced 2026-04-29 22:38:36 +08:00
Move to RusTLS, Static binary build, performance improvements.
This commit is contained in:
34
Cargo.toml
34
Cargo.toml
@@ -3,33 +3,39 @@ name = "gazan"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[profile.release]
|
||||
lto = true
|
||||
codegen-units = 1
|
||||
opt-level = 3
|
||||
strip = "symbols"
|
||||
|
||||
[dependencies]
|
||||
tokio = { version = "1.44.2", features = ["full"] }
|
||||
pingora = { version = "0.4.0", features = ["lb", "openssl"] } # openssl, rustls, boringssl
|
||||
tokio = { version = "1.45.0", features = ["full"] }
|
||||
pingora = { version = "0.5.0", features = ["lb", "rustls"] } # openssl, rustls, boringssl
|
||||
serde = { version = "1.0.219", features = ["derive"] }
|
||||
dashmap = "7.0.0-rc2"
|
||||
pingora-core = "0.4.0"
|
||||
pingora-proxy = "0.4.0"
|
||||
pingora-http = "0.4.0"
|
||||
pingora-core = "0.5.0"
|
||||
pingora-proxy = "0.5.0"
|
||||
pingora-http = "0.5.0"
|
||||
async-trait = "0.1.88"
|
||||
env_logger = "0.11.8"
|
||||
log = "0.4.27"
|
||||
futures = "0.3.31"
|
||||
notify = "8.0.0"
|
||||
axum = { version = "0.8.3" }
|
||||
reqwest = { version = "0.12.15", features = ["json"] }
|
||||
serde_yaml = "0.8.26"
|
||||
#hickory-client = "0.25.1"
|
||||
axum = { version = "0.8.4" }
|
||||
#reqwest = { version = "0.12.15", features = ["json", "native-tls-alpn"] }
|
||||
#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.0"
|
||||
base64 = "0.22.1"
|
||||
jsonwebtoken = "9.3.1"
|
||||
#hmac = "0.12.1"
|
||||
#sha2 = "0.10.8"
|
||||
tonic = "0.13.0"
|
||||
#uuid = { version = "1.16.0", features = ["v4"] }
|
||||
sha2 = { version = "0.10.8", default-features = false }
|
||||
sha2 = { version = "0.11.0-pre.5", default-features = false }
|
||||
base16ct = { version = "0.2.0", features = ["alloc"] }
|
||||
urlencoding = "2.1.3"
|
||||
arc-swap = "1.7.1"
|
||||
|
||||
rustls = { version = "0.23.27", features = ["ring"] }
|
||||
mimalloc = { version = "0.1.46", default-features = false }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user