Merge a877fc93600300c241b64a88dcdeaea81d57ebda into 7d1e85e575dcf67e2fc27dc6c79b53f591791948

This commit is contained in:
dependabot[bot] 2025-03-31 03:42:12 +00:00 committed by GitHub
commit 8323dd5840
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 28 additions and 7 deletions

33
Cargo.lock generated
View File

@ -978,7 +978,7 @@ dependencies = [
"tokio-reactor-trait",
"tokio-stream",
"toml",
"tonic",
"tonic 0.12.3",
"tonic-reflection",
"tonic-web",
"tower 0.5.2",
@ -1004,7 +1004,7 @@ dependencies = [
"rand 0.9.0",
"serde",
"tokio",
"tonic",
"tonic 0.12.3",
"tonic-build",
]
@ -5210,6 +5210,27 @@ dependencies = [
"tracing",
]
[[package]]
name = "tonic"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85839f0b32fd242bb3209262371d07feda6d780d16ee9d2bc88581b89da1549b"
dependencies = [
"async-trait",
"base64 0.22.1",
"bytes",
"http 1.3.1",
"http-body 1.0.1",
"http-body-util",
"percent-encoding",
"pin-project",
"prost",
"tokio-stream",
"tower-layer",
"tower-service",
"tracing",
]
[[package]]
name = "tonic-build"
version = "0.12.3"
@ -5226,15 +5247,15 @@ dependencies = [
[[package]]
name = "tonic-reflection"
version = "0.12.3"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "878d81f52e7fcfd80026b7fdb6a9b578b3c3653ba987f87f0dce4b64043cba27"
checksum = "88fa815be858816dad226a49439ee90b7bcf81ab55bee72fdb217f1e6778c3ca"
dependencies = [
"prost",
"prost-types",
"tokio",
"tokio-stream",
"tonic",
"tonic 0.13.0",
]
[[package]]
@ -5250,7 +5271,7 @@ dependencies = [
"http-body-util",
"pin-project",
"tokio-stream",
"tonic",
"tonic 0.12.3",
"tower-http 0.5.2",
"tower-layer",
"tower-service",

View File

@ -80,7 +80,7 @@
# gRPC and Protobuf
tonic = "0.12"
tonic-web = "0.12"
tonic-reflection = "0.12"
tonic-reflection = "0.13"
tokio = { version = "1.44", features = ["macros", "rt-multi-thread"] }
tokio-stream = "0.1"
prost-types = "0.13"