Skip to content

Commit b737a46

Browse files
committed
rustup: update to nightly-2024-12-01.
1 parent 9282a64 commit b737a46

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
@@ -18,9 +18,9 @@ use std::{env, fs, mem};
1818
/// `cargo publish`. We need to figure out a way to do this properly, but let's hardcode it for now :/
1919
//const REQUIRED_RUST_TOOLCHAIN: &str = include_str!("../../rust-toolchain.toml");
2020
const REQUIRED_RUST_TOOLCHAIN: &str = r#"[toolchain]
21-
channel = "nightly-2024-11-22"
21+
channel = "nightly-2024-12-01"
2222
components = ["rust-src", "rustc-dev", "llvm-tools"]
23-
# commit_hash = b19329a37cedf2027517ae22c87cf201f93d776e"#;
23+
# commit_hash = 7442931d49b199ad0a1cc0f8ca54e327b5139b66"#;
2424

2525
fn rustc_output(arg: &str) -> Result<String, Box<dyn Error>> {
2626
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-2024-11-22"
2+
channel = "nightly-2024-12-01"
33
components = ["rust-src", "rustc-dev", "llvm-tools"]
4-
# commit_hash = b19329a37cedf2027517ae22c87cf201f93d776e
4+
# commit_hash = 7442931d49b199ad0a1cc0f8ca54e327b5139b66
55

66
# Whenever changing the nightly channel, update the commit hash above, and make
77
# sure to change `REQUIRED_TOOLCHAIN` in `crates/rustc_codegen_spirv/build.rs` also.

0 commit comments

Comments
 (0)