From c2a014b10add4ce43589651a0445900ba6c70a79 Mon Sep 17 00:00:00 2001 From: firestar99 Date: Mon, 13 Apr 2026 10:52:30 +0200 Subject: [PATCH] update to nightly-2026-04-11, rustc 1.96.0 --- crates/rustc_codegen_spirv/build.rs | 4 ++-- rust-toolchain.toml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/rustc_codegen_spirv/build.rs b/crates/rustc_codegen_spirv/build.rs index 19a0467372..fbb90b4df2 100644 --- a/crates/rustc_codegen_spirv/build.rs +++ b/crates/rustc_codegen_spirv/build.rs @@ -19,9 +19,9 @@ use std::{env, fs, mem}; /// `cargo publish`. We need to figure out a way to do this properly, but let's hardcode it for now :/ //const REQUIRED_RUST_TOOLCHAIN: &str = include_str!("../../rust-toolchain.toml"); const REQUIRED_RUST_TOOLCHAIN: &str = r#"[toolchain] -channel = "nightly-2026-04-08" +channel = "nightly-2026-04-11" components = ["rust-src", "rustc-dev", "llvm-tools"] -# commit_hash = c756124775121dea0e640652c5ee3c89e3dd0eb4"#; +# commit_hash = 02c7f9bec0fd583160f8bcccb830216023b07bee"#; fn rustc_output(arg: &str) -> Result> { let rustc = env::var("RUSTC").unwrap_or_else(|_| "rustc".into()); diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 64104027f2..b3bb94061f 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,7 +1,7 @@ [toolchain] -channel = "nightly-2026-04-08" +channel = "nightly-2026-04-11" components = ["rust-src", "rustc-dev", "llvm-tools"] -# commit_hash = c756124775121dea0e640652c5ee3c89e3dd0eb4 +# commit_hash = 02c7f9bec0fd583160f8bcccb830216023b07bee # Whenever changing the nightly channel, update the commit hash above, and # change `REQUIRED_RUST_TOOLCHAIN` in `crates/rustc_codegen_spirv/build.rs` too.