From bb2ca8d71f75bbaa801f091cde7af4676cc8a044 Mon Sep 17 00:00:00 2001 From: Vedant Mohan Goyal <83997633+vedantmgoyal9@users.noreply.github.com> Date: Sun, 12 Jan 2025 13:48:39 +0530 Subject: [PATCH 1/2] [Docker] Update Rust to 1.84.0 --- Dockerfile.windows | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.windows b/Dockerfile.windows index ee75ea1..0cc4884 100644 --- a/Dockerfile.windows +++ b/Dockerfile.windows @@ -1,5 +1,5 @@ FROM mcr.microsoft.com/windows/servercore:ltsc2022 -ARG RUST_VERSION=1.82.0 +ARG RUST_VERSION=1.84.0 ARG ZIG_VERSION=0.10.1 USER ContainerAdministrator ADD https://github.com/phracker/MacOSX-SDKs/releases/latest/download/MacOSX11.3.sdk.tar.xz /sdk.tar.xz From 7cbda6591c20041e28185e729370066bfc9fdadd Mon Sep 17 00:00:00 2001 From: Vedant Mohan Goyal <83997633+vedantmgoyal9@users.noreply.github.com> Date: Sun, 12 Jan 2025 13:49:47 +0530 Subject: [PATCH 2/2] Update Linux docker image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a45a4b1..b0b906d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG RUST_VERSION=1.82.0 +ARG RUST_VERSION=1.84.0 FROM rust:$RUST_VERSION as builder