From 73d731705ad22959d3513edf9222b7f658046dbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Coss=C3=ADo?= Date: Mon, 22 Apr 2024 04:25:01 -0400 Subject: [PATCH] Bump outdated deps (#97) * update deps * add http2 feature to reqwest --- Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 7e5eb2b..90500c4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,18 +13,18 @@ categories = ["database", "api-bindings"] keywords = ["qdrant", "vector-search", "search-engine", "client", "grpc"] [dependencies] -tonic = { version = "0.9.2", features = ["tls", "tls-roots"] } -prost = "0.11.9" -prost-types = "0.11.9" +tonic = { version = "0.11.0", features = ["tls", "tls-roots"] } +prost = "0.12.4" +prost-types = "0.12.4" anyhow = "1" serde = { version = "1", features = ["derive"], optional = true } serde_json = { version = "1", optional = true } -reqwest = { version = "0.11.24", optional = true, default-features = false, features = ["stream", "rustls-tls"] } +reqwest = { version = "0.12.3", optional = true, default-features = false, features = ["stream", "rustls-tls", "http2"] } futures-util = { version = "0.3.30", optional = true } [dev-dependencies] -tonic-build = { version = "0.9.2", features = ["prost"] } +tonic-build = { version = "0.11.0", features = ["prost"] } tokio = { version = "1.36.0", features = ["rt-multi-thread"] } [features]