From 4fcb5b9de927e366179829cc1c3f4eefbc1368b7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Apr 2023 23:21:29 +0000 Subject: [PATCH] build(deps): bump tonic from 0.8.3 to 0.9.1 (#6455) * build(deps): bump tonic from 0.8.3 to 0.9.1 Bumps [tonic](https://github.com/hyperium/tonic) from 0.8.3 to 0.9.1. - [Release notes](https://github.com/hyperium/tonic/releases) - [Changelog](https://github.com/hyperium/tonic/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/tonic/compare/v0.8.3...v0.9.1) --- updated-dependencies: - dependency-name: tonic dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * Adds tonic 0.8.3 to deny.toml --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: arya2 --- Cargo.lock | 34 +++++++++++++++++++++++++++++++--- deny.toml | 3 +++ zebrad/Cargo.toml | 2 +- 3 files changed, 35 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 31cdb9c8..c250b730 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -817,7 +817,7 @@ checksum = "e57ff02e8ad8e06ab9731d5dc72dc23bef9200778eae1a89d555d8c42e5d4a86" dependencies = [ "prost", "prost-types", - "tonic", + "tonic 0.8.3", "tracing-core", ] @@ -839,7 +839,7 @@ dependencies = [ "thread_local", "tokio", "tokio-stream", - "tonic", + "tonic 0.8.3", "tracing", "tracing-core", "tracing-subscriber 0.3.16", @@ -4715,6 +4715,34 @@ dependencies = [ "tracing-futures", ] +[[package]] +name = "tonic" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38bd8e87955eb13c1986671838177d6792cdc52af9bffced0d2c8a9a7f741ab3" +dependencies = [ + "async-trait", + "axum", + "base64 0.21.0", + "bytes", + "futures-core", + "futures-util", + "h2", + "http", + "http-body", + "hyper", + "hyper-timeout", + "percent-encoding", + "pin-project", + "prost", + "tokio", + "tokio-stream", + "tower", + "tower-layer", + "tower-service", + "tracing", +] + [[package]] name = "tonic-build" version = "0.8.4" @@ -5945,7 +5973,7 @@ dependencies = [ "tokio", "tokio-stream", "toml 0.7.3", - "tonic", + "tonic 0.9.1", "tonic-build", "tower", "tracing", diff --git a/deny.toml b/deny.toml index 2de812ac..7db86173 100644 --- a/deny.toml +++ b/deny.toml @@ -78,6 +78,9 @@ skip-tree = [ # Test-only dependencies + # wait for console-api -> console-subscriber to upgrade + { name = "tonic", version = "=0.8.3" }, + # wait for tokio-test -> tokio-stream to upgrade { name = "tokio-util", version = "=0.6.10" }, diff --git a/zebrad/Cargo.toml b/zebrad/Cargo.toml index df3c42c6..2a915d29 100644 --- a/zebrad/Cargo.toml +++ b/zebrad/Cargo.toml @@ -193,7 +193,7 @@ tokio-stream = "0.1.12" # test feature lightwalletd-grpc-tests prost = "0.11.8" -tonic = "0.8.0" +tonic = "0.9.1" proptest = "1.1.0" proptest-derive = "0.3.0"