Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 74e9f26

Browse files
committed
Rustup to rustc 1.74.0-nightly (0288f2e 2023-09-25)
1 parent b03d0b8 commit 74e9f26

File tree

3 files changed

+27
-4
lines changed

3 files changed

+27
-4
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ index 897a5e9..331f66f 100644
1919
#![feature(const_option_ext)]
2020
#![feature(const_result)]
2121
-#![cfg_attr(target_has_atomic = "128", feature(integer_atomics))]
22+
#![cfg_attr(test, feature(cfg_match))]
2223
#![feature(int_roundings)]
2324
#![feature(slice_group_by)]
24-
#![feature(split_array)]
2525
diff --git a/atomic.rs b/atomic.rs
2626
index b735957..ea728b6 100644
2727
--- a/atomic.rs

patches/stdlib-lock.toml

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,9 +174,9 @@ dependencies = [
174174

175175
[[package]]
176176
name = "libc"
177-
version = "0.2.146"
177+
version = "0.2.148"
178178
source = "registry+https://github.com/rust-lang/crates.io-index"
179-
checksum = "f92be4933c13fd498862a9e02a3055f8a8d9c039ce33db97306fd5a6caa7f29b"
179+
checksum = "9cdc71e17332e86d2e1d38c1f99edcb6288ee11b815fb1a4b049eaa2114d369b"
180180
dependencies = [
181181
"rustc-std-workspace-core",
182182
]
@@ -255,6 +255,27 @@ dependencies = [
255255
"core",
256256
]
257257

258+
[[package]]
259+
name = "r-efi"
260+
version = "4.2.0"
261+
source = "registry+https://github.com/rust-lang/crates.io-index"
262+
checksum = "575fc2d9b3da54adbdfaddf6eca48fec256d977c8630a1750b8991347d1ac911"
263+
dependencies = [
264+
"compiler_builtins",
265+
"rustc-std-workspace-core",
266+
]
267+
268+
[[package]]
269+
name = "r-efi-alloc"
270+
version = "1.0.0"
271+
source = "registry+https://github.com/rust-lang/crates.io-index"
272+
checksum = "31d6f09fe2b6ad044bc3d2c34ce4979796581afd2f1ebc185837e02421e02fd7"
273+
dependencies = [
274+
"compiler_builtins",
275+
"r-efi",
276+
"rustc-std-workspace-core",
277+
]
278+
258279
[[package]]
259280
name = "rand"
260281
version = "0.8.5"
@@ -353,6 +374,8 @@ dependencies = [
353374
"panic_abort",
354375
"panic_unwind",
355376
"profiler_builtins",
377+
"r-efi",
378+
"r-efi-alloc",
356379
"rand",
357380
"rand_xorshift",
358381
"rustc-demangle",

rust-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
2-
channel = "nightly-2023-09-19"
2+
channel = "nightly-2023-09-26"
33
components = ["rust-src", "rustc-dev", "llvm-tools"]

0 commit comments

Comments
 (0)