Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 18 additions & 18 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ sea-orm = { version = "1.1.0", features = ["sqlx-postgres", "runtime-tokio-rustl
sea-orm-migration = { version = "1.1.0", features = ["runtime-tokio-rustls", "sqlx-postgres"] }

# Web framework
axum = "0.7.5"
tower-http = { version = "0.5.2", features = ["cors", "trace"] }
axum = "0.8.0"
tower-http = { version = "0.6.0", features = ["cors", "trace"] }
hyper = "1.5"
hyper-util = { version = "0.1", features = ["client", "client-legacy", "http1", "http2", "tokio"] }
http = "1.1"
Expand All @@ -48,7 +48,7 @@ tracing-subscriber = { version = "0.3", features = ["env-filter", "registry"] }

# Security
jsonwebtoken = "9.3.0"
bcrypt = "0.15"
bcrypt = "0.19"
rsa = { version = "0.9", features = ["sha2"] }
totp-rs = { version = "5.6", features = ["qr", "otpauth"] }

Expand All @@ -64,38 +64,38 @@ utoipa = { version = "4.2", features = ["axum_extras", "uuid", "chrono"] }
utoipa-swagger-ui = { version = "6.0", features = ["axum"] }

# etcd
etcd-client = { version = "0.14", default-features = false, features = ["tls-roots"] }
etcd-client = { version = "0.19", default-features = false, features = ["tls-roots"] }

# PKI
rcgen = { version = "0.14", features = ["pem", "x509-parser"] }
x509-parser = "0.16"
x509-parser = "0.18"

# Metrics
prometheus = { version = "0.13", features = ["process"] }
prometheus = { version = "0.14", features = ["process"] }

# Rate limiting
tower_governor = { version = "0.4", features = ["axum"] }
tower_governor = { version = "0.8", features = ["axum"] }

# OpenTelemetry
opentelemetry = { version = "0.31" }
opentelemetry_sdk = { version = "0.31", features = ["rt-tokio"] }
opentelemetry-otlp = { version = "0.31", features = ["grpc-tonic", "trace"] }
opentelemetry-semantic-conventions = { version = "0.31" }
tracing-opentelemetry = { version = "0.32" }
opentelemetry = { version = "0.32" }
opentelemetry_sdk = { version = "0.32", features = ["rt-tokio"] }
opentelemetry-otlp = { version = "0.32", features = ["grpc-tonic", "trace"] }
opentelemetry-semantic-conventions = { version = "0.32" }
tracing-opentelemetry = { version = "0.33" }

# Other
rand = "0.8"
rand = "0.10"
aes-gcm = "0.10"
base64 = "0.22"
sha1 = "0.10"
sha2 = "0.10"
sha1 = "0.11"
sha2 = "0.11"
cookie = { version = "0.18.1", features = ["percent-encode"] }
qrcode = "0.14"
image = "0.25"
sysinfo = "0.32"
bollard = "0.17"
sysinfo = "0.39"
bollard = "0.21"
futures-util = "0.3"
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] }
reqwest = { version = "0.13", default-features = false, features = ["json", "rustls-tls"] }

[profile.release]
opt-level = 3
Expand Down
2 changes: 1 addition & 1 deletion agent/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ path = "src/main.rs"

[dependencies]
tokio = { workspace = true, features = ["full"] }
reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false }
reqwest = { version = "0.13", features = ["json", "rustls-tls"], default-features = false }
serde = { workspace = true }
serde_json = { workspace = true }
tracing = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion control-plane/csfx-updater/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ tracing-subscriber = { workspace = true }
dotenvy = { workspace = true }
anyhow = { workspace = true }
etcd-client = { workspace = true }
reqwest = { version = "0.11", features = ["json", "rustls-tls-webpki-roots"], default-features = false }
reqwest = { version = "0.13", features = ["json", "rustls-tls-webpki-roots"], default-features = false }
serde = { workspace = true }
serde_json = { workspace = true }
2 changes: 1 addition & 1 deletion control-plane/failover-controller/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ shared = { path = "../shared/shared" }
entity = { path = "../shared/entity" }

tokio = { workspace = true, features = ["full"] }
axum = { version = "0.7", features = ["macros"] }
axum = { version = "0.8", features = ["macros"] }
tracing = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
serde = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion control-plane/registry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ migration = { path = "../shared/migration" }
tokio = { workspace = true, features = ["full"] }

# Web framework
axum = { version = "0.7", features = ["macros"] }
axum = { version = "0.8", features = ["macros"] }

# Logging
tracing = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion control-plane/scheduler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ shared = { path = "../shared/shared" }
entity = { path = "../shared/entity" }

tokio = { workspace = true, features = ["full"] }
axum = { version = "0.7", features = ["macros"] }
axum = { version = "0.8", features = ["macros"] }
tracing = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
serde = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion control-plane/sdn-controller/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ shared = { path = "../shared/shared" }
entity = { path = "../shared/entity" }

tokio = { workspace = true, features = ["full"] }
axum = { version = "0.7", features = ["macros"] }
axum = { version = "0.8", features = ["macros"] }
tracing = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
serde = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions control-plane/volume-manager/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ async-trait = { workspace = true }
etcd-client = { workspace = true }

# Web framework
axum = { version = "0.7", features = ["macros"] }
axum = { version = "0.8", features = ["macros"] }

# Database
sea-orm = { workspace = true }
Expand All @@ -35,7 +35,7 @@ serde = { workspace = true }
serde_json = { workspace = true }

# HTTP Client for Patroni
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] }
reqwest = { version = "0.13", default-features = false, features = ["json", "rustls-tls"] }

# Utilities
dotenvy = { workspace = true }
Expand Down
Loading