Update to nightly-2022-09-11

This commit is contained in:
Sylvester Hesp 2022-10-27 10:54:44 +02:00 committed by Eduard-Mihai Burtescu
parent 64b159257e
commit c7ca8df8b1
2 changed files with 4 additions and 4 deletions

View File

@ -10,9 +10,9 @@ use std::process::{Command, ExitCode};
/// `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");
const REQUIRED_RUST_TOOLCHAIN: &str = r#"[toolchain]
channel = "nightly-2022-09-10"
channel = "nightly-2022-09-11"
components = ["rust-src", "rustc-dev", "llvm-tools-preview"]
# commit_hash = 1d37ed661a6922e7a167609b8cd7eb31e972b19b"#;
# commit_hash = 2287107588d92889d282e6cd3c1ca5df34cd34a5"#;
fn get_rustc_commit_hash() -> Result<String, Box<dyn Error>> {
let rustc = std::env::var("RUSTC").unwrap_or_else(|_| String::from("rustc"));

View File

@ -5,9 +5,9 @@
# to the user in the error, instead of "error: invalid channel name '[toolchain]'".
[toolchain]
channel = "nightly-2022-09-10"
channel = "nightly-2022-09-11"
components = ["rust-src", "rustc-dev", "llvm-tools-preview"]
# commit_hash = 1d37ed661a6922e7a167609b8cd7eb31e972b19b
# commit_hash = 2287107588d92889d282e6cd3c1ca5df34cd34a5
# Whenever changing the nightly channel, update the commit hash above, and make
# sure to change REQUIRED_TOOLCHAIN in crates/rustc_codegen_spirv/src/build.rs also.