Secu/update dependencies 20251021 (#56)

* Update alloy-dyn-abi (to 1.4.1) && alloy-trie (to 0.9.1)

* Update clap dependency to 4.5.50

* Cargo update
This commit is contained in:
Sydhds
2025-10-21 11:46:34 +02:00
committed by GitHub
parent d47719a093
commit 1f859c0eff
4 changed files with 476 additions and 513 deletions

957
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -20,7 +20,7 @@ ark-ff = { version = "0.5.0", default-features = false, features = ["asm"] }
ark-groth16 = { version = "0.5.0", default-features = false, features = [] }
ark-serialize = { version = "0.5.0", default-features = false, features = [] }
tokio = { version = "1.48.0", features = ["macros", "rt-multi-thread"] }
clap = { version = "4.5.49", features = ["derive", "wrap_help"] }
clap = { version = "4.5.50", features = ["derive", "wrap_help"] }
url = { version = "2.5.7", features = ["serde"] }
alloy = { version = "1.0.41", features = [
"getrandom",
@@ -35,6 +35,8 @@ thiserror = "2.0.17"
rustls = "0.23.33"
zeroize = "1.8.2"
tonic = "0.14.2"
tonic-web = "0.14.2"
tonic-reflection = "0.14.2"
prost = "0.14.1"
tonic-prost = "0.14.2"
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }

View File

@@ -20,30 +20,30 @@ derive_more.workspace = true
thiserror.workspace = true
zeroize.workspace = true
tonic.workspace = true
tonic-reflection.workspace = true
tonic-web.workspace = true
prost.workspace = true
tonic-prost.workspace = true
tracing-subscriber.workspace = true
tracing.workspace = true
tonic-reflection = "0.14.1"
tonic-web = "0.14.1"
tower-http = { version = "0.6.6", features = ["cors"] }
futures = "0.3"
bytesize = "2.0.1"
chrono = "0.4.41"
parking_lot = "0.12"
futures = "0.3.31"
bytesize = "2.1.0"
chrono = "0.4.42"
parking_lot = "0.12.5"
http = "1.3.1"
async-channel = "2.3.1"
rand = "0.9.2"
# rand = "0.9.2"
num-bigint = "0.4.6"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.142"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
rocksdb = { git = "https://github.com/tillrohrmann/rust-rocksdb", branch = "issues/836" }
nom = "8.0.0"
claims = "0.8.0"
clap_config = "0.1"
metrics = "0.24"
metrics-exporter-prometheus = "0.17"
rayon = "1.10"
clap_config = "0.1.1"
metrics = "0.24.2"
metrics-exporter-prometheus = "0.17.2"
rayon = "1.11"
[build-dependencies]
tonic-prost-build.workspace = true

View File

@@ -10,7 +10,7 @@ clap.workspace = true
rustls.workspace = true
tracing-subscriber.workspace = true
tracing.workspace = true
toml = "0.9.5"
toml = "0.9.8"
opentelemetry = { version = "0.31.0", default-features = false, features = [
"trace",
] }