Osv scanner required dependencies updates (#50)

* Update tracing-subscriber to 0.3.20
* Update alloy dependency to 1.0.38
* Update tonic, rustls & zeroize dependencies
* Update clap to 4.5.49
* Update opentelemetry to 0.31.0
This commit is contained in:
Sydhds
2025-10-14 15:05:18 +02:00
committed by GitHub
parent 65f6d60b14
commit d60b93416e
6 changed files with 237 additions and 448 deletions

View File

@@ -23,9 +23,9 @@ ark-groth16 = { version = "0.5.0", default-features = false, features = [] }
# ark-serialize = { version = "0.5.0", features = ["parallel"] }
ark-serialize = { version = "0.5.0", default-features = false, features = [] }
tokio = { version = "1.47.1", features = ["macros", "rt-multi-thread"] }
clap = { version = "4.5.46", features = ["derive", "wrap_help"] }
clap = { version = "4.5.49", features = ["derive", "wrap_help"] }
url = { version = "2.5.7", features = ["serde"] }
alloy = { version = "1.0.27", features = [
alloy = { version = "1.0.38", features = [
"getrandom",
"sol-types",
"contract",
@@ -34,17 +34,17 @@ alloy = { version = "1.0.27", features = [
] }
async-trait = "0.1.89"
derive_more = "2.0.1"
thiserror = "2.0.16"
rustls = "0.23.31"
zeroize = "1.8"
tonic = "0.14.1"
thiserror = "2.0.17"
rustls = "0.23.32"
zeroize = "1.8.2"
tonic = "0.14.2"
prost = "0.14.1"
tonic-prost = "0.14.1"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
tonic-prost = "0.14.2"
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
tracing = "0.1.41"
#[build-dependencies]
tonic-prost-build = "0.14.1"
tonic-prost-build = "0.14.2"
#[dev.dependencies]
criterion = { version = "0.7.0", features = ["async_tokio"] }