diff --git a/crates/rustc_codegen_spirv/build.rs b/crates/rustc_codegen_spirv/build.rs index fbb90b4df2..cdb8069221 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-11" +channel = "nightly-2026-04-14" components = ["rust-src", "rustc-dev", "llvm-tools"] -# commit_hash = 02c7f9bec0fd583160f8bcccb830216023b07bee"#; +# commit_hash = 17584a181979f04f2aaad867332c22db1caa511a"#; 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 b3bb94061f..1bd9926c19 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,7 +1,7 @@ [toolchain] -channel = "nightly-2026-04-11" +channel = "nightly-2026-04-14" components = ["rust-src", "rustc-dev", "llvm-tools"] -# commit_hash = 02c7f9bec0fd583160f8bcccb830216023b07bee +# commit_hash = 17584a181979f04f2aaad867332c22db1caa511a # Whenever changing the nightly channel, update the commit hash above, and # change `REQUIRED_RUST_TOOLCHAIN` in `crates/rustc_codegen_spirv/build.rs` too.