From 5cce85f6b8362c5d051824a498f6c1cc0f3ffbe2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Aug 2025 19:32:34 +0000 Subject: [PATCH] Update tonic requirement from 0.13.0 to 0.14.1 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.13.0...v0.14.1) --- updated-dependencies: - dependency-name: tonic dependency-version: 0.14.1 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 edd3f53..70f3fd8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,7 +31,7 @@ all-features = true [dependencies] prost = { version = "0.13", default-features = false, features = ["prost-derive"] } bytes = { version = "1.2", default-features = false } -tonic = { version = "0.13.0", default-features = false, optional = true } +tonic = { version = "0.14.1", 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 bbaf2c2..23709df 100644 --- a/tools/proto-compiler/Cargo.toml +++ b/tools/proto-compiler/Cargo.toml @@ -11,7 +11,7 @@ git2 = "0.19" prost-build = "0.13" walkdir = "2.3" argh = "0.1" -tonic = "0.13.0" +tonic = "0.14.1" tonic-build = "0.13.0" similar = "2.2" informalsystems-pbjson-build = "0.7.0"