From 03de04f607db05c181a334867e7044aff7a43024 Mon Sep 17 00:00:00 2001 From: Josh McKinney Date: Mon, 5 Jan 2026 11:16:06 -0800 Subject: [PATCH] Update available Rust versions to include 1.92, 1.91, 1.90 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9aa89a57..563d361d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -209,7 +209,7 @@ RUN if [ "$TARGETARCH" = "amd64" ]; then \ ### RUST ### -ARG RUST_VERSIONS="1.89.0 1.88.0 1.87.0 1.86.0 1.85.1 1.84.1 1.83.0" +ARG RUST_VERSIONS="1.92.0 1.91.1 1.90 1.89.0 1.88.0 1.87.0 1.86.0 1.85.1 1.84.1 1.83.0" RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal --default-toolchain none \ && . "$HOME/.cargo/env" \ && echo 'source $HOME/.cargo/env' >> /etc/profile \