Rollup merge of #150203 - jtgeibel:drop-From-derive-macro-from-prelude, r=jdonszelmann

Drop the From derive macro from the v1 prelude

This was accidentally added to the prelude in 3f4dc1e02d.

Fixes: rust-lang/rust#150165

r? `````@jdonszelmann`````
This commit is contained in:
Matthias Krüger 2025-12-21 18:50:47 +01:00 committed by GitHub
commit c91cbcd49c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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};