Update stable to Rust 1.79.

This commit is contained in:
Dario Nieuwenhuis
2024-06-13 20:40:04 +02:00
parent 8d79679bb2
commit 4d9115b3fb
7 changed files with 23 additions and 2 deletions

View File

@@ -70,6 +70,10 @@ impl CfgSet {
}
fn is_rustc_nightly() -> bool {
if env::var_os("EMBASSY_FORCE_CHECK_CFG").is_some() {
return true;
}
let rustc = env::var_os("RUSTC").unwrap_or_else(|| OsString::from("rustc"));
let output = Command::new(rustc)