From 2f63ca652f738372dcb1b0357b5fb23cc8e107c6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 8 Feb 2024 23:15:45 +0000 Subject: [PATCH] Update tonic requirement from 0.9 to 0.11 in /spire-api Updates the requirements on [tonic](https://github.com/hyperium/tonic) to permit the latest version. - [Changelog](https://github.com/hyperium/tonic/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/tonic/compare/v0.9.0...v0.11.0) --- updated-dependencies: - dependency-name: tonic dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- spire-api/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spire-api/Cargo.toml b/spire-api/Cargo.toml index ce48c33..be45b9e 100644 --- a/spire-api/Cargo.toml +++ b/spire-api/Cargo.toml @@ -17,7 +17,7 @@ keywords = ["SPIFFE", "SPIRE"] [dependencies] spiffe = { version = "0.4.0", default-features = false, features = ["spiffe-types"] } bytes = { version = "1", features = ["serde"] } -tonic = { version = "0.9", default-features = false, features = ["prost", "codegen", "transport"]} +tonic = { version = "0.11", default-features = false, features = ["prost", "codegen", "transport"]} prost = { version = "0.11"} prost-types = {version = "0.11"} tokio = { "version" = "1", features = ["net", "test-util"]}