From 8f7cdea3927e87d6e2b8041ecf2bba874a6aeb7e Mon Sep 17 00:00:00 2001 From: Timmy Date: Thu, 14 May 2026 14:31:37 +0100 Subject: [PATCH] chore: bump container Rust toolchain to 1.93 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit matrix-sdk 0.17 requires Rust 1.93 (uses Duration::from_mins, declares rust-version = "1.93"). The container was on 1.90, which is why stories 1022 and 1028 both bounced off the matrix-sdk upgrade despite the host having Rust 1.93 — the rustup update on the host doesn't propagate into the build container. Bumping the FROM rust:1.93-bookworm so the next container rebuild ships 1.93, unblocking matrix-sdk 0.17 upgrades and the rand@0.8 transitive elimination that comes with it. --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 2cf89424..8b887e8f 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -7,7 +7,7 @@ # # Tested with: OrbStack (recommended on macOS), Docker Desktop (slower bind mounts) -FROM rust:1.90-bookworm AS base +FROM rust:1.93-bookworm AS base # Clippy and rustfmt are needed at runtime for acceptance gates RUN rustup component add clippy rustfmt