From ed2292a27c739fc3778854e6ebcd4a0f44de5e9f Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 19 Mar 2024 17: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 b8b816c..d087141 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -260,7 +260,7 @@ dependencies = [ "serde_json", "serde_yaml", "tokio", - "tonic", + "tonic 0.10.2", "tonic-build", "tonic-health", "tonic-reflection", @@ -2711,6 +2711,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", + "bytes", + "http", + "http-body", + "percent-encoding", + "pin-project", + "prost", + "tokio", + "tokio-stream", + "tower-layer", + "tower-service", + "tracing", +] + [[package]] name = "tonic-build" version = "0.11.0" @@ -2734,20 +2755,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 1fce23d..0f1d741 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -49,7 +49,7 @@ serde_yaml = "0.9.33" tokio = { version = "1.36.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"