Skip to content

Commit 680e6be

Browse files
committed
rustup: update to nightly-2024-12-16.
1 parent fcfa371 commit 680e6be

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-12-15"
21+
channel = "nightly-2024-12-16"
2222
components = ["rust-src", "rustc-dev", "llvm-tools"]
23-
# commit_hash = 0aeaa5eb22180fdf12a8489e63c4daa18da6f236"#;
23+
# commit_hash = c26db435bf8aee2efc397aab50f3a21eb351d6e5"#;
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-12-15"
2+
channel = "nightly-2024-12-16"
33
components = ["rust-src", "rustc-dev", "llvm-tools"]
4-
# commit_hash = 0aeaa5eb22180fdf12a8489e63c4daa18da6f236
4+
# commit_hash = c26db435bf8aee2efc397aab50f3a21eb351d6e5
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)