From 3228762354848858c1b22fe1f118a2be69dcb83f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Aug 2026 09:14:52 +0000 Subject: [PATCH] chore(deps)(deps): update tonic requirement from 0.12 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/grpc/grpc-rust/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/tonic/compare/v0.12.0...tonic-v0.14.6) --- updated-dependencies: - dependency-name: tonic dependency-version: 0.14.6 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- crates/anode-protocol/Cargo.toml | 2 +- crates/anode-raft/Cargo.toml | 2 +- crates/anode/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3993d3d..d423d18 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,7 +33,7 @@ tower = "0.5" tower-http = { version = "0.6", features = ["trace", "cors"] } # gRPC and protobuf -tonic = { version = "0.12", features = ["transport", "tls"] } +tonic = { version = "0.14", features = ["transport", "tls"] } tonic-build = "0.12" prost = "0.13" prost-types = "0.13" diff --git a/crates/anode-protocol/Cargo.toml b/crates/anode-protocol/Cargo.toml index 30edf9f..a689aa0 100644 --- a/crates/anode-protocol/Cargo.toml +++ b/crates/anode-protocol/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] prost = "0.13" -tonic = "0.12" +tonic = "0.14" bytes = "1.8" thiserror = "2.0" serde = { version = "1.0", features = ["derive"] } diff --git a/crates/anode-raft/Cargo.toml b/crates/anode-raft/Cargo.toml index 35174e8..52c2be9 100644 --- a/crates/anode-raft/Cargo.toml +++ b/crates/anode-raft/Cargo.toml @@ -8,7 +8,7 @@ openraft = { version = "0.9", features = ["serde", "storage-v2"] } anode-protocol = { path = "../anode-protocol" } anode-storage = { path = "../anode-storage" } tokio = { version = "1.42", features = ["full"] } -tonic = { version = "0.12", features = ["tls"] } +tonic = { version = "0.14", features = ["tls"] } tonic-build = "0.12" tracing = "0.1" thiserror = "2.0" diff --git a/crates/anode/Cargo.toml b/crates/anode/Cargo.toml index 3145bc6..1a650dc 100644 --- a/crates/anode/Cargo.toml +++ b/crates/anode/Cargo.toml @@ -33,7 +33,7 @@ tower = "0.5" tower-http = { version = "0.6", features = ["trace", "cors"] } prometheus = "0.13" openraft = "0.9" -tonic = "0.12" +tonic = "0.14" prost = "0.13" bytes = "1.5" futures = "0.3"