From 82f44a84b5fe8a4ca9402df9064e98aea71d681b Mon Sep 17 00:00:00 2001 From: Gary Coady Date: Fri, 10 Jan 2025 10:48:54 +0100 Subject: [PATCH] Remove server feature from tonic The server feature is unneeded, and pulls in extra dependencies (e.g. axum). --- googleapis/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/googleapis/Cargo.toml b/googleapis/Cargo.toml index 5bee19fc..417dde5c 100644 --- a/googleapis/Cargo.toml +++ b/googleapis/Cargo.toml @@ -12,7 +12,7 @@ description = "Google Cloud Platform rust client." # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tonic = { version = "0.12", default-features = false, features = ["transport", "prost", "codegen", "gzip"] } +tonic = { version = "0.12", default-features = false, features = ["channel", "prost", "codegen", "gzip"] } prost = "0.13" prost-types = "0.13"