Rustup to rustc 1.83.0-nightly (0ee7cb5e3 2024-09-10)

This commit is contained in:
bjorn3 2024-09-11 19:31:20 +00:00
parent 17bcb2ff46
commit dcae9acda0
4 changed files with 3 additions and 28 deletions

View File

@ -38,7 +38,7 @@ index 42a26ae..5ac1042 100644
@@ -1,3 +1,4 @@
+#![cfg(test)]
// tidy-alphabetical-start
#![cfg_attr(bootstrap, feature(offset_of_nested))]
#![cfg_attr(target_has_atomic = "128", feature(integer_atomics))]
#![cfg_attr(test, feature(cfg_match))]
--
2.21.0 (Apple Git-122)

View File

@ -14,10 +14,9 @@ diff --git a/lib.rs b/lib.rs
index 1e336bf..35e6f54 100644
--- a/lib.rs
+++ b/lib.rs
@@ -1,7 +1,6 @@
@@ -1,6 +1,5 @@
#![cfg(test)]
// tidy-alphabetical-start
#![cfg_attr(bootstrap, feature(offset_of_nested))]
-#![cfg_attr(target_has_atomic = "128", feature(integer_atomics))]
#![cfg_attr(test, feature(cfg_match))]
#![feature(alloc_layout_extra)]

View File

@ -1,24 +0,0 @@
From 95de09ace678555e65e1d92a3c7f5b5c46053e13 Mon Sep 17 00:00:00 2001
From: bjorn3 <17426603+bjorn3@users.noreply.github.com>
Date: Wed, 11 Sep 2024 17:37:06 +0000
Subject: [PATCH] Add missing dbghelp link directive
---
library/windows_targets/src/lib.rs | 1 +
1 file changed, 1 insertion(+)
diff --git a/library/windows_targets/src/lib.rs b/library/windows_targets/src/lib.rs
index 1965b6c..fa45a1e 100644
--- a/library/windows_targets/src/lib.rs
+++ b/library/windows_targets/src/lib.rs
@@ -35,6 +35,7 @@ pub macro link {
#[cfg(not(feature = "windows_raw_dylib"))]
#[link(name = "advapi32")]
+#[link(name = "dbghelp")]
#[link(name = "ntdll")]
#[link(name = "userenv")]
#[link(name = "ws2_32")]
--
2.34.1

View File

@ -1,4 +1,4 @@
[toolchain]
channel = "nightly-2024-09-03"
channel = "nightly-2024-09-11"
components = ["rust-src", "rustc-dev", "llvm-tools"]
profile = "minimal"