From e7c5e19d88dfd2969fff4e06d5eec830941ec0d3 Mon Sep 17 00:00:00 2001 From: Draco-Lunaris-Echo Date: Sun, 7 Jun 2026 20:38:26 -0500 Subject: [PATCH] fix(docker): bump Rust toolchain from 1.82 to 1.85 for moxcms compatibility moxcms-0.8.1 (transitive dependency via image-0.25) uses edition 2024 and rust-version 1.85.0, which cannot be parsed by Rust 1.82. This caused the Docker build to fail with: error: failed to parse manifest at moxcms-0.8.1/Cargo.toml Upgrading the build stage from rust:1.82-bookworm to rust:1.85-bookworm resolves the Cargo.toml parsing error. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 21d2d8a..996a292 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ # --------------------------------------------------------------------------- # Stage 1: Rust build # --------------------------------------------------------------------------- -FROM rust:1.82-bookworm AS rust-builder +FROM rust:1.85-bookworm AS rust-builder RUN apt-get update && apt-get install -y \ pkg-config \