From 87c4e875a295473740f851d1c9119793f0181b44 Mon Sep 17 00:00:00 2001 From: artiga033 Date: Thu, 13 Mar 2025 13:01:03 +0800 Subject: [PATCH] Disable tonic default features This is to avoid having to introduce indirect dependency of axum, which is often not the latest if fron tonic->tower->axum --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4dddcafb..e2e61c5e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ categories = ["database", "api-bindings"] keywords = ["qdrant", "vector-search", "search-engine", "client", "grpc"] [dependencies] -tonic = { version = "0.12.3", features = ["tls", "tls-roots", "gzip"] } +tonic = { version = "0.12.3", default-features = false, features = ["codegen", "prost", "tls", "tls-roots", "gzip"] } prost = "0.13.3" prost-types = "0.13.3" anyhow = "1.0.89"