From 53343335ac7bfd93662c2ecb904bc9ba9434a199 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 23 Apr 2024 16:02:13 +0000 Subject: [PATCH] Update Rust crate tonic-reflection to 0.11.0 --- Cargo.lock | 31 ++++++++++++++++++++++++++----- Cargo.toml | 2 +- 2 files changed, 27 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 42ea5df..e1539b1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -266,7 +266,7 @@ dependencies = [ "serde_json", "serde_yaml", "tokio", - "tonic", + "tonic 0.10.2", "tonic-build", "tonic-health", "tonic-reflection", @@ -2775,6 +2775,27 @@ dependencies = [ "tracing", ] +[[package]] +name = "tonic" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76c4eb7a4e9ef9d4763600161f12f5070b92a578e1b634db88a6887844c91a13" +dependencies = [ + "async-trait", + "base64 0.21.5", + "bytes", + "http 0.2.11", + "http-body 0.4.5", + "percent-encoding", + "pin-project", + "prost", + "tokio", + "tokio-stream", + "tower-layer", + "tower-service", + "tracing", +] + [[package]] name = "tonic-build" version = "0.11.0" @@ -2798,20 +2819,20 @@ dependencies = [ "prost", "tokio", "tokio-stream", - "tonic", + "tonic 0.10.2", ] [[package]] name = "tonic-reflection" -version = "0.10.2" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3fa37c513df1339d197f4ba21d28c918b9ef1ac1768265f11ecb6b7f1cba1b76" +checksum = "548c227bd5c0fae5925812c4ec6c66ffcfced23ea370cb823f4d18f0fc1cb6a7" dependencies = [ "prost", "prost-types", "tokio", "tokio-stream", - "tonic", + "tonic 0.11.0", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 4b3fe8d..522dd28 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -49,7 +49,7 @@ serde_yaml = "0.9.34+deprecated" tokio = { version = "1.37.0", features = ["full"] } tonic = { version = "0.10.2", features = ["tls"] } tonic-health = "0.10.2" -tonic-reflection = "0.10.2" +tonic-reflection = "0.11.0" tracing = "0.1.40" tracing-log = "0.2.0" tracing-subscriber = "0.3.18"