From 605621224f985454d7a3e1185314098863377df0 Mon Sep 17 00:00:00 2001 From: "Tim (Theemathas) Chirananthavat" Date: Wed, 13 Aug 2025 11:16:00 +0700 Subject: [PATCH] Make std use the edition 2024 prelude This seem to have been overlooked in --- library/std/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/std/src/lib.rs b/library/std/src/lib.rs index fd06a3b540cda..21892ee68027f 100644 --- a/library/std/src/lib.rs +++ b/library/std/src/lib.rs @@ -426,7 +426,7 @@ // to import the prelude implicitly when building crates that depend on std. #[prelude_import] #[allow(unused)] -use prelude::rust_2021::*; +use prelude::rust_2024::*; // Access to Bencher, etc. #[cfg(test)]