From c768da7ba2fb21f70560087cf8c461f7e01406b6 Mon Sep 17 00:00:00 2001 From: Arnaud Gourlay Date: Wed, 9 Oct 2024 11:26:23 +0200 Subject: [PATCH] Update dependencies --- Cargo.toml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1e924b4..0cde4c8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,20 +13,20 @@ categories = ["database", "api-bindings"] keywords = ["qdrant", "vector-search", "search-engine", "client", "grpc"] [dependencies] -tonic = { version = "0.12.1", features = ["tls", "tls-roots", "gzip"] } -prost = "0.13.1" -prost-types = "0.13.1" -anyhow = "1.0.86" -serde = { version = "1.0.205", features = ["derive"], optional = true } -serde_json = { version = "1.0.122", optional = true } -reqwest = { version = "0.12.5", optional = true, default-features = false, features = ["stream", "rustls-tls", "http2"] } -futures-util = { version = "0.3.30", optional = true } -derive_builder = { version = "0.20.0" } -thiserror = "1.0.63" +tonic = { version = "0.12.3", features = ["tls", "tls-roots", "gzip"] } +prost = "0.13.3" +prost-types = "0.13.3" +anyhow = "1.0.89" +serde = { version = "1.0.210", features = ["derive"], optional = true } +serde_json = { version = "1.0.128", optional = true } +reqwest = { version = "0.12.8", optional = true, default-features = false, features = ["stream", "rustls-tls", "http2"] } +futures-util = { version = "0.3.31", optional = true } +derive_builder = { version = "0.20.2" } +thiserror = "1.0.64" [dev-dependencies] -tonic-build = { version = "0.12.1", features = ["prost"] } -tokio = { version = "1.39.2", features = ["rt-multi-thread"] } +tonic-build = { version = "0.12.3", features = ["prost"] } +tokio = { version = "1.40.0", features = ["rt-multi-thread"] } [features] default = ["download_snapshots", "serde", "generate-snippets"]