diff options
| author | Ralf Jung <post@ralfj.de> | 2024-12-13 18:23:32 +0100 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2025-01-14 16:16:38 +0100 |
| commit | 4df78a07e5c3ad032d59941b77ab394e4a75c7c1 (patch) | |
| tree | 5408dd6b9bb51d7ddd174b6f4def46d513e4058e /library/core | |
| parent | c074d8eee765cfd64e6e143d2894c85c7f3ddc1d (diff) | |
| download | rust-4df78a07e5c3ad032d59941b77ab394e4a75c7c1.tar.gz rust-4df78a07e5c3ad032d59941b77ab394e4a75c7c1.zip | |
make rustc_encodable_decodable feature properly unstable
Diffstat (limited to 'library/core')
| -rw-r--r-- | library/core/src/macros/mod.rs | 6 | ||||
| -rw-r--r-- | library/core/src/prelude/mod.rs | 3 |
2 files changed, 3 insertions, 6 deletions
diff --git a/library/core/src/macros/mod.rs b/library/core/src/macros/mod.rs index 402b436d28e..ed79ceeb6db 100644 --- a/library/core/src/macros/mod.rs +++ b/library/core/src/macros/mod.rs @@ -1773,8 +1773,7 @@ pub(crate) mod builtin { #[rustc_builtin_macro] #[unstable( feature = "rustc_encodable_decodable", - issue = "none", - soft, + issue = "134301", reason = "derive macro for `rustc-serialize`; should not be used in new code" )] #[deprecated(since = "1.52.0", note = "rustc-serialize is deprecated and no longer supported")] @@ -1787,8 +1786,7 @@ pub(crate) mod builtin { #[rustc_builtin_macro] #[unstable( feature = "rustc_encodable_decodable", - issue = "none", - soft, + issue = "134301", reason = "derive macro for `rustc-serialize`; should not be used in new code" )] #[deprecated(since = "1.52.0", note = "rustc-serialize is deprecated and no longer supported")] diff --git a/library/core/src/prelude/mod.rs b/library/core/src/prelude/mod.rs index d3fda1cd273..98f061d463a 100644 --- a/library/core/src/prelude/mod.rs +++ b/library/core/src/prelude/mod.rs @@ -22,8 +22,7 @@ pub mod v1 { // Do not `doc(inline)` these `doc(hidden)` items. #[unstable( feature = "rustc_encodable_decodable", - issue = "none", - soft, + issue = "134301", reason = "derive macro for `rustc-serialize`; should not be used in new code" )] #[allow(deprecated)] |
