From 3d2805bc782dfe6febc6e03c00f6947ef0c0ae1e Mon Sep 17 00:00:00 2001 From: link2xt Date: Thu, 18 Sep 2025 14:58:25 +0000 Subject: [PATCH] ci: update Rust to 1.90.0 --- .github/workflows/ci.yml | 2 +- scripts/coredeps/install-rust.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 815e7ef0d..d5e89f5af 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ permissions: {} env: RUSTFLAGS: -Dwarnings - RUST_VERSION: 1.89.0 + RUST_VERSION: 1.90.0 # Minimum Supported Rust Version MSRV: 1.85.0 diff --git a/scripts/coredeps/install-rust.sh b/scripts/coredeps/install-rust.sh index 5f2af81bd..74fe1cc7a 100755 --- a/scripts/coredeps/install-rust.sh +++ b/scripts/coredeps/install-rust.sh @@ -7,7 +7,7 @@ set -euo pipefail # # Avoid using rustup here as it depends on reading /proc/self/exe and # has problems running under QEMU. -RUST_VERSION=1.89.0 +RUST_VERSION=1.90.0 ARCH="$(uname -m)" test -f "/lib/libc.musl-$ARCH.so.1" && LIBC=musl || LIBC=gnu