Skip to content

Commit c7a5b34

Browse files
RalfJunggitbot
authored and
gitbot
committed
make rustc_encodable_decodable feature properly unstable
1 parent 3866288 commit c7a5b34

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

core/src/macros/mod.rs

+2-4
Original file line numberDiff line numberDiff line change
@@ -1836,8 +1836,7 @@ pub(crate) mod builtin {
18361836
#[rustc_builtin_macro]
18371837
#[unstable(
18381838
feature = "rustc_encodable_decodable",
1839-
issue = "none",
1840-
soft,
1839+
issue = "134301",
18411840
reason = "derive macro for `rustc-serialize`; should not be used in new code"
18421841
)]
18431842
#[deprecated(since = "1.52.0", note = "rustc-serialize is deprecated and no longer supported")]
@@ -1850,8 +1849,7 @@ pub(crate) mod builtin {
18501849
#[rustc_builtin_macro]
18511850
#[unstable(
18521851
feature = "rustc_encodable_decodable",
1853-
issue = "none",
1854-
soft,
1852+
issue = "134301",
18551853
reason = "derive macro for `rustc-serialize`; should not be used in new code"
18561854
)]
18571855
#[deprecated(since = "1.52.0", note = "rustc-serialize is deprecated and no longer supported")]

core/src/prelude/mod.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ pub mod v1 {
2222
// Do not `doc(inline)` these `doc(hidden)` items.
2323
#[unstable(
2424
feature = "rustc_encodable_decodable",
25-
issue = "none",
26-
soft,
25+
issue = "134301",
2726
reason = "derive macro for `rustc-serialize`; should not be used in new code"
2827
)]
2928
#[allow(deprecated)]

std/src/prelude/mod.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,7 @@ pub mod v1 {
124124
// Do not `doc(inline)` these `doc(hidden)` items.
125125
#[unstable(
126126
feature = "rustc_encodable_decodable",
127-
issue = "none",
128-
soft,
127+
issue = "134301",
129128
reason = "derive macro for `rustc-serialize`; should not be used in new code"
130129
)]
131130
#[allow(deprecated)]

0 commit comments

Comments
 (0)