From 0a500b1c241934c1e310ffa91f7654d28a4d7686 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Sep 2023 14:10:27 +0000 Subject: [PATCH] chore(deps): bump tonic from 0.8.3 to 0.10.1 Bumps [tonic](https://github.com/hyperium/tonic) from 0.8.3 to 0.10.1. - [Changelog](https://github.com/hyperium/tonic/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/tonic/compare/v0.8.3...v0.10.1) --- updated-dependencies: - dependency-name: tonic dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 23 +++++++++++++++++++++-- Cargo.toml | 2 +- 2 files changed, 22 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 779ee999d..122226be0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -521,7 +521,7 @@ dependencies = [ "time", "tokio", "tokio-stream", - "tonic", + "tonic 0.10.1", "tower", "tower-http 0.4.4", "tracing", @@ -1685,7 +1685,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4b459b0f2ec8bc8434b8f4c0f70f91221738f7892f00150d15dc7edc075f70a0" dependencies = [ "prost", - "tonic", + "tonic 0.8.3", "tonic-build", ] @@ -3504,6 +3504,25 @@ dependencies = [ "tracing-futures", ] +[[package]] +name = "tonic" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "14c00bc15e49625f3d2f20b17082601e5e17cf27ead69e805174026c194b6664" +dependencies = [ + "base64 0.21.4", + "bytes", + "http", + "http-body", + "percent-encoding", + "pin-project", + "tokio", + "tokio-stream", + "tower-layer", + "tower-service", + "tracing", +] + [[package]] name = "tonic-build" version = "0.8.4" diff --git a/Cargo.toml b/Cargo.toml index e3a37120c..09c6b4249 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -73,7 +73,7 @@ zeroize = { version = "1.5", default-features = false, features = [ "std", "zero # INX inx = { version = "1.0.0-beta.8", default-features = false, optional = true } -tonic = { version = "0.8", default-features = false, optional = true } +tonic = { version = "0.10", default-features = false, optional = true } [dev-dependencies] bincode = { version = "1.3", default-features = false }