Skip to content

Commit 3f06952

Browse files
committed
Rustup to rustc 1.84.0-nightly (4f2f477 2024-10-23)
1 parent 0093a4b commit 3f06952

3 files changed

+6
-5
lines changed

patches/0022-coretests-Disable-not-compiling-tests.patch

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ index 42a26ae..5ac1042 100644
3838
@@ -1,3 +1,4 @@
3939
+#![cfg(test)]
4040
// tidy-alphabetical-start
41-
#![cfg_attr(target_has_atomic = "128", feature(integer_atomics))]
42-
#![cfg_attr(test, feature(cfg_match))]
41+
#![cfg_attr(bootstrap, feature(strict_provenance))]
42+
#![cfg_attr(not(bootstrap), feature(strict_provenance_lints))]
4343
--
4444
2.21.0 (Apple Git-122)

patches/0027-coretests-128bit-atomic-operations.patch

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,10 @@ diff --git a/lib.rs b/lib.rs
1414
index 1e336bf..35e6f54 100644
1515
--- a/lib.rs
1616
+++ b/lib.rs
17-
@@ -1,6 +1,5 @@
18-
#![cfg(test)]
17+
@@ -2,7 +2,6 @@
1918
// tidy-alphabetical-start
19+
#![cfg_attr(bootstrap, feature(strict_provenance))]
20+
#![cfg_attr(not(bootstrap), feature(strict_provenance_lints))]
2021
-#![cfg_attr(target_has_atomic = "128", feature(integer_atomics))]
2122
#![cfg_attr(test, feature(cfg_match))]
2223
#![feature(alloc_layout_extra)]

rust-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[toolchain]
2-
channel = "nightly-2024-10-20"
2+
channel = "nightly-2024-10-24"
33
components = ["rust-src", "rustc-dev", "llvm-tools"]
44
profile = "minimal"

0 commit comments

Comments
 (0)