From e5e483845ed62aa767d084c5d49736428c430848 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 27 Feb 2024 17:53:38 +0000 Subject: [PATCH] build(deps): bump tonic-reflection from 0.10.2 to 0.11.0 Bumps [tonic-reflection](https://github.com/hyperium/tonic) from 0.10.2 to 0.11.0. - [Changelog](https://github.com/hyperium/tonic/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/tonic/compare/v0.10.2...v0.11.0) --- updated-dependencies: - dependency-name: tonic-reflection dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 29 +++++++++++++++++++++++++---- Cargo.toml | 2 +- 2 files changed, 26 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 71691a14..c51d3487 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1936,7 +1936,7 @@ dependencies = [ "time", "tokio", "tokio-postgres", - "tonic", + "tonic 0.10.2", "tonic-build", "tonic-reflection", "tower", @@ -2983,6 +2983,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 0.2.11", + "http-body 0.4.6", + "percent-encoding", + "pin-project", + "prost", + "tokio", + "tokio-stream", + "tower-layer", + "tower-service", + "tracing", +] + [[package]] name = "tonic-build" version = "0.11.0" @@ -2998,15 +3019,15 @@ dependencies = [ [[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 8d543723..3347c132 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ time = { version = "0.3", features = ["macros"] } tokio = { version = "1.36", features = ["full"] } tokio-postgres = "0.7" tonic = "0.10" -tonic-reflection = "0.10" +tonic-reflection = "0.11" tower = "0.4" tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] }