chore: bump container Rust toolchain to 1.93

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.
This commit is contained in:
Timmy
2026-05-14 14:31:37 +01:00
parent 9501412598
commit 8f7cdea392
+1 -1
View File
@@ -7,7 +7,7 @@
# #
# Tested with: OrbStack (recommended on macOS), Docker Desktop (slower bind mounts) # 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 # Clippy and rustfmt are needed at runtime for acceptance gates
RUN rustup component add clippy rustfmt RUN rustup component add clippy rustfmt