From fce00b28ea1ad8414d389542368e5850f7cf0bb6 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Tue, 12 May 2026 13:28:00 +0000 Subject: [PATCH 1/3] Update qdrant-client to 1.18.0 Co-authored-by: Cursor --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4d69022..41ad869 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1391,9 +1391,9 @@ dependencies = [ [[package]] name = "qdrant-client" -version = "1.17.0" +version = "1.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f5d0a9b168ecf8f30a3eb7e8f4766e3050701242ffbe99838b58e6c4251e7211" +checksum = "82cef4e669bcf9c07471463adab5ee080dd9bc9381f3652ea4981f6030b2c309" dependencies = [ "anyhow", "derive_builder", diff --git a/Cargo.toml b/Cargo.toml index ab2f8e1..8493bf6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ ctrlc = "3.5.2" futures = "0.3.32" indicatif = "0.18.4" memmap2 = "0.9.10" -qdrant-client = "1.17.0" +qdrant-client = "1.18.0" rand = "0.10.1" rand_distr = "0.6.0" serde = "1.0" From 6ff19f9bb49e68492baddf430284493a1c199aa7 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Tue, 12 May 2026 13:35:35 +0000 Subject: [PATCH 2/3] Bump Rust base image to 1.95.0 Update cargo-chef image from rust-1.93.0 to rust-1.95.0. Co-authored-by: Cursor --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 06366db..127ec35 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ FROM --platform=${BUILDPLATFORM:-linux/amd64} tonistiigi/xx AS xx # Utilizing Docker layer caching with `cargo-chef`. # # https://www.lpalmieri.com/posts/fast-rust-docker-builds/ -FROM --platform=${BUILDPLATFORM:-linux/amd64} lukemathwalker/cargo-chef:latest-rust-1.93.0-bookworm AS chef +FROM --platform=${BUILDPLATFORM:-linux/amd64} lukemathwalker/cargo-chef:latest-rust-1.95.0-bookworm AS chef FROM chef AS planner From 60110491ed3f206b1b681b39c7fec92c880c73a3 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Tue, 12 May 2026 13:38:19 +0000 Subject: [PATCH 3/3] Bump tokio to 1.52.3 Co-authored-by: Cursor --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 41ad869..61ff731 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2035,9 +2035,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.52.0" +version = "1.52.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a91135f59b1cbf38c91e73cf3386fca9bb77915c45ce2771460c9d92f0f3d776" +checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe" dependencies = [ "bytes", "libc", diff --git a/Cargo.toml b/Cargo.toml index 8493bf6..930ee72 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ rand = "0.10.1" rand_distr = "0.6.0" serde = "1.0" serde_json = "1.0" -tokio = { version = "1.52.0", features = ["full"] } +tokio = { version = "1.52.3", features = ["full"] } tokio-stream = "0.1.18" uuid = { version = "1.23.1", features = ["serde", "v4"] } env_logger = "0.11.10"