From d98394d8d57c69b1087290999bdda69c0c737b6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Gonz=C3=A1lez?= <7822554+AlexTMjugador@users.noreply.github.com> Date: Sat, 4 Oct 2025 22:42:57 +0200 Subject: [PATCH] chore: revert back to stable Rust toolchain (#4492) PR #3960 reverted the Cranelift usage introduced in #4388 due to its codegen not being up to standard when compiling some pieces of code under some platforms. However, it didn't revert the switch to a nightly Rust toolchain, which is now unnecessary, and produces unnecessary drift between what's declared in the `rust-toolchain.toml` and the Docker image manifests, causing inefficiencies. These changes bring back the usage of stable Rust for the time being to correct those inefficiencies. --- rust-toolchain.toml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/rust-toolchain.toml b/rust-toolchain.toml index a6e94890..b67e7d53 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,9 +1,2 @@ [toolchain] -channel = "nightly-2025-09-18" -profile = "default" -components = [ - "rust-analyzer", - # use cranelift in debug builds to improve compile times - # also see `.cargo/config.toml` - "rustc-codegen-cranelift-preview" -] +channel = "1.89.0"