From 93fbf3b885fa9d0bd2a0fec2cbb32cfdb91cc5eb Mon Sep 17 00:00:00 2001 From: Justin Geibel Date: Sat, 20 Dec 2025 11:23:38 -0500 Subject: [PATCH] Drop the From derive macro from the v1 prelude This was accidentally added to the prelude in 3f4dc1e02d759aa3c3807d4efc1f7f6e293536a5. --- library/core/src/prelude/v1.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/library/core/src/prelude/v1.rs b/library/core/src/prelude/v1.rs index 977fd1926fd0c..a5d9a5352dfcf 100644 --- a/library/core/src/prelude/v1.rs +++ b/library/core/src/prelude/v1.rs @@ -118,13 +118,6 @@ pub use crate::macros::builtin::deref; )] pub use crate::macros::builtin::define_opaque; -#[unstable( - feature = "derive_from", - issue = "144889", - reason = "`derive(From)` is unstable" -)] -pub use crate::macros::builtin::From; - #[unstable(feature = "extern_item_impls", issue = "125418")] pub use crate::macros::builtin::{eii, unsafe_eii};