From e6479fb81cf2be20f1cc1f96c1c1a490752ddb5a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Aug 2025 03:50:02 +0000 Subject: [PATCH] Update tonic requirement from 0.11 to 0.14 Updates the requirements on [tonic](https://github.com/hyperium/tonic) to permit the latest version. - [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.11.0...v0.14.0) --- updated-dependencies: - dependency-name: tonic dependency-version: 0.14.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- tools/proto-compiler/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8dfb508..9ea0fca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,7 +30,7 @@ all-features = true [dependencies] prost = { version = "0.12.3", default-features = false, features = ["prost-derive"] } bytes = { version = "1.2", default-features = false } -tonic = { version = "0.11", default-features = false, optional = true } +tonic = { version = "0.14", default-features = false, optional = true } serde = { version = "1.0", default-features = false, optional = true } schemars = { version = "0.8", optional = true } subtle-encoding = { version = "0.5", default-features = false } diff --git a/tools/proto-compiler/Cargo.toml b/tools/proto-compiler/Cargo.toml index 9726462..14da65a 100644 --- a/tools/proto-compiler/Cargo.toml +++ b/tools/proto-compiler/Cargo.toml @@ -11,7 +11,7 @@ git2 = "0.18" prost-build = "0.12" walkdir = "2.3" argh = "0.1" -tonic = "0.11" +tonic = "0.14" tonic-build = "0.11" similar = "2.2" informalsystems-pbjson-build = "0.7.0"