Skip to content

Commit f9bd67f

Browse files
LegNeatoFirestar99
authored andcommitted
Upgrade Rust toolchain to nightly-2026-04-01
Updates rust-toolchain.toml and REQUIRED_RUST_TOOLCHAIN in build.rs to nightly-2026-04-01 (commit 48cc71ee88cd0f11217eced958b9930970da998b).
1 parent 877bd86 commit f9bd67f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

crates/rustc_codegen_spirv/build.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ use std::{env, fs, mem};
1919
/// `cargo publish`. We need to figure out a way to do this properly, but let's hardcode it for now :/
2020
//const REQUIRED_RUST_TOOLCHAIN: &str = include_str!("../../rust-toolchain.toml");
2121
const REQUIRED_RUST_TOOLCHAIN: &str = r#"[toolchain]
22-
channel = "nightly-2026-03-14"
22+
channel = "nightly-2026-04-01"
2323
components = ["rust-src", "rustc-dev", "llvm-tools"]
24-
# commit_hash = 1d8897a4e88051480b36c501e66809425c6e08ad"#;
24+
# commit_hash = 48cc71ee88cd0f11217eced958b9930970da998b"#;
2525

2626
fn rustc_output(arg: &str) -> Result<String, Box<dyn Error>> {
2727
let rustc = env::var("RUSTC").unwrap_or_else(|_| "rustc".into());

rust-toolchain.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[toolchain]
2-
channel = "nightly-2026-03-14"
2+
channel = "nightly-2026-04-01"
33
components = ["rust-src", "rustc-dev", "llvm-tools"]
4-
# commit_hash = 1d8897a4e88051480b36c501e66809425c6e08ad
4+
# commit_hash = 48cc71ee88cd0f11217eced958b9930970da998b
55

66
# Whenever changing the nightly channel, update the commit hash above, and
77
# change `REQUIRED_RUST_TOOLCHAIN` in `crates/rustc_codegen_spirv/build.rs` too.

0 commit comments

Comments
 (0)