diff --git a/Cargo.lock b/Cargo.lock index 4d69022..61ff731 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", @@ -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 ab2f8e1..930ee72 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,12 +17,12 @@ 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" 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" 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