From 5679b80587fd8383fb09ff5af379f7ca967cc98c Mon Sep 17 00:00:00 2001 From: Pierre Fenoll Date: Fri, 16 Feb 2024 10:55:58 +0100 Subject: [PATCH] feat(deps): bump tonic minor to 0.11 Signed-off-by: Pierre Fenoll --- tourniquet-tonic/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tourniquet-tonic/Cargo.toml b/tourniquet-tonic/Cargo.toml index b787e56..030ffd0 100644 --- a/tourniquet-tonic/Cargo.toml +++ b/tourniquet-tonic/Cargo.toml @@ -17,7 +17,7 @@ edition = "2021" [dependencies] async-trait = "0.1" http = "0.2" -tonic = { version = "0.10", default-features = false, features = ["transport"] } +tonic = { version = "0.11", default-features = false, features = ["transport"] } log = "0.4" tourniquet = { version = "0.4", path = ".." } tower-service = "0.3" @@ -28,7 +28,7 @@ prost = "0.12" prost-types = "0.12" serde = "1" tokio = { version = "1", features = ["macros", "rt-multi-thread", "net", "io-util"] } -tonic = "0.10" +tonic = "0.11" [features] trace = ["tracing", "tourniquet/trace"]