From 8606c125bb1b5219fba3fb9a350ff4652f88e082 Mon Sep 17 00:00:00 2001 From: Chris Joel <0xcda7a@gmail.com> Date: Wed, 24 Jul 2024 22:29:29 -0700 Subject: [PATCH] fix: Gzip tests --- test-suite/gzip/client/Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test-suite/gzip/client/Cargo.toml b/test-suite/gzip/client/Cargo.toml index 73ffd9b..7e5b45d 100644 --- a/test-suite/gzip/client/Cargo.toml +++ b/test-suite/gzip/client/Cargo.toml @@ -6,15 +6,15 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -prost = "0.12.3" -tonic = { version = "0.11.0", default-features = false, features = [ +prost = "0.13" +tonic = { version = "0.12", default-features = false, features = [ "prost", "codegen", "gzip", ] } [build-dependencies] -tonic-build = { version = "0.11.0", default-features = false, features = [ +tonic-build = { version = "0.12", default-features = false, features = [ "prost", ] }