@@ -1577,8 +1577,12 @@ pub(crate) mod builtin {
1577
1577
1578
1578
/// Unstable implementation detail of the `rustc` compiler, do not use.
1579
1579
#[ rustc_builtin_macro]
1580
- #[ stable( feature = "rust1" , since = "1.0.0" ) ]
1581
- #[ allow_internal_unstable( core_intrinsics, libstd_sys_internals, rt) ]
1580
+ #[ unstable(
1581
+ feature = "rustc_encodable_decodable" ,
1582
+ issue = "none" ,
1583
+ soft,
1584
+ reason = "unstable implementation detail of the `rustc` compiler, do not use"
1585
+ ) ]
1582
1586
#[ deprecated( since = "1.52.0" , note = "rustc-serialize is deprecated and no longer supported" ) ]
1583
1587
#[ doc( hidden) ] // While technically stable, using it is unstable, and deprecated. Hide it.
1584
1588
pub macro RustcDecodable ( $item: item) {
@@ -1587,8 +1591,12 @@ pub(crate) mod builtin {
1587
1591
1588
1592
/// Unstable implementation detail of the `rustc` compiler, do not use.
1589
1593
#[ rustc_builtin_macro]
1590
- #[ stable( feature = "rust1" , since = "1.0.0" ) ]
1591
- #[ allow_internal_unstable( core_intrinsics, rt) ]
1594
+ #[ unstable(
1595
+ feature = "rustc_encodable_decodable" ,
1596
+ issue = "none" ,
1597
+ soft,
1598
+ reason = "unstable implementation detail of the `rustc` compiler, do not use"
1599
+ ) ]
1592
1600
#[ deprecated( since = "1.52.0" , note = "rustc-serialize is deprecated and no longer supported" ) ]
1593
1601
#[ doc( hidden) ] // While technically stable, using it is unstable, and deprecated. Hide it.
1594
1602
pub macro RustcEncodable ( $item: item) {
0 commit comments