From 4c981c621860691bccc8eb3c4750760bc5024674 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 May 2026 03:12:13 +0000 Subject: [PATCH] chore(deps): bump tonic from 0.12.3 to 0.13.1 Bumps [tonic](https://github.com/hyperium/tonic) from 0.12.3 to 0.13.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.12.3...v0.13.1) --- updated-dependencies: - dependency-name: tonic dependency-version: 0.13.1 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 aa32e98..500cad9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -509,7 +509,7 @@ version = "0.1.0-alpha.0" dependencies = [ "hex", "prost", - "tonic", + "tonic 0.13.1", "tonic-build", "tonic-web-wasm-client", ] @@ -631,6 +631,25 @@ name = "tonic" version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "877c5b330756d856ffcc4553ab34a5684481ade925ecc54bcd1bf02b1d0d4d52" +dependencies = [ + "base64", + "bytes", + "http", + "http-body", + "http-body-util", + "percent-encoding", + "pin-project", + "tokio-stream", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "tonic" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e581ba15a835f4d9ea06c55ab1bd4dce26fc53752c69a04aac00703bfb49ba9" dependencies = [ "async-trait", "base64", @@ -678,7 +697,7 @@ dependencies = [ "js-sys", "pin-project", "thiserror", - "tonic", + "tonic 0.12.3", "tower-service", "wasm-bindgen", "wasm-bindgen-futures", diff --git a/Cargo.toml b/Cargo.toml index 6c659f3..880156f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ readme = "README.md" crate-type = ["cdylib", "rlib"] [dependencies] -tonic = { version = "0.12", default-features = false, features = ["prost", "codegen"] } +tonic = { version = "0.13", default-features = false, features = ["prost", "codegen"] } tonic-web-wasm-client = "0.6" prost = "0.13" hex = "0.4"