From 578490b49ac92baf2fe3b7716052296a8190ff5e Mon Sep 17 00:00:00 2001 From: Jack Lavigne Date: Tue, 28 Oct 2025 15:26:01 +0100 Subject: [PATCH 1/2] chore: update rust toolchain --- Dockerfile | 2 +- rust-toolchain.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1c938211..30ce2045 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.84.1 +FROM rust:1.90 # Install needed packages and clean up RUN apt update && \ diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 96db1f2a..6da80dcd 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,4 +1,4 @@ [toolchain] profile = "default" -channel = "1.84.1" +channel = "1.90" targets = ["wasm32-wasip1"] From 1f1034e8f539d558e250ea32e6ead40807b9ba4a Mon Sep 17 00:00:00 2001 From: Jack Lavigne Date: Tue, 28 Oct 2025 15:31:37 +0100 Subject: [PATCH 2/2] chore: remove outdated package --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 30ce2045..fa63fa2b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM rust:1.90 # Install needed packages and clean up RUN apt update && \ - apt install -y --no-install-recommends lsb-release wget software-properties-common gnupg gcc-multilib git && \ + apt install -y --no-install-recommends lsb-release wget gnupg gcc-multilib git && \ rm -rf /var/lib/apt/lists/* # Install clang and clean up