From 9fda90f3e5b4121103d97b1e4ffee419afd72ead Mon Sep 17 00:00:00 2001 From: ruv Date: Mon, 25 May 2026 15:51:01 -0400 Subject: [PATCH] =?UTF-8?q?fix(docker):=20bump=20rust:1.85=20=E2=86=92=201?= =?UTF-8?q?.89=20(matches=20workspace=20rust-toolchain.toml)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Build failed on the multi-arch run: `time@0.3.47 requires rustc 1.88.0` and the workspace toolchain pin is already 1.89 (needed for ruvector-core's avx512f target_feature, mmap-rs edition 2024, hnsw_rs is_multiple_of). Dockerfile lagged on 1.85. Refs #794. Co-Authored-By: claude-flow --- docker/Dockerfile.rust | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile.rust b/docker/Dockerfile.rust index 400769c8..9afa77a5 100644 --- a/docker/Dockerfile.rust +++ b/docker/Dockerfile.rust @@ -3,7 +3,7 @@ # Multi-stage build for minimal final image # Stage 1: Build -FROM rust:1.85-bookworm AS builder +FROM rust:1.89-bookworm AS builder WORKDIR /build