about summary refs log tree commit diff
path: root/library/std/src/prelude/mod.rs
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2025-01-07 18:28:42 +0100
committerRalf Jung <post@ralfj.de>2025-01-14 16:16:38 +0100
commit9ac62f972fd47705f9d229e854772194565071eb (patch)
tree64fedcf02879ed35c722fcedc8c485bd72c25707 /library/std/src/prelude/mod.rs
parent4df78a07e5c3ad032d59941b77ab394e4a75c7c1 (diff)
downloadrust-9ac62f972fd47705f9d229e854772194565071eb.tar.gz
rust-9ac62f972fd47705f9d229e854772194565071eb.zip
remove Rustc{En,De}codable from library and compiler
Diffstat (limited to 'library/std/src/prelude/mod.rs')
-rw-r--r--library/std/src/prelude/mod.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/library/std/src/prelude/mod.rs b/library/std/src/prelude/mod.rs
index b7efffcc446..14e6c2715df 100644
--- a/library/std/src/prelude/mod.rs
+++ b/library/std/src/prelude/mod.rs
@@ -120,15 +120,6 @@ mod common;
 pub mod v1 {
     #[stable(feature = "rust1", since = "1.0.0")]
     pub use super::common::*;
-
-    // Do not `doc(inline)` these `doc(hidden)` items.
-    #[unstable(
-        feature = "rustc_encodable_decodable",
-        issue = "134301",
-        reason = "derive macro for `rustc-serialize`; should not be used in new code"
-    )]
-    #[allow(deprecated)]
-    pub use core::prelude::v1::{RustcDecodable, RustcEncodable};
 }
 
 /// The 2015 version of the prelude of The Rust Standard Library.