@@ -438,9 +438,6 @@ declare_features! (
438438 ( active, tbm_target_feature, "1.27.0" , Some ( 44839 ) , None ) ,
439439 ( active, wasm_target_feature, "1.30.0" , Some ( 44839 ) , None ) ,
440440
441- // Allows macro invocations of the form `#[foo::bar]`
442- ( active, proc_macro_path_invoc, "1.27.0" , Some ( 38356 ) , None ) ,
443-
444441 // Allows macro invocations on modules expressions and statements and
445442 // procedural macros to expand to non-items.
446443 ( active, proc_macro_mod, "1.27.0" , Some ( 38356 ) , None ) ,
@@ -454,8 +451,6 @@ declare_features! (
454451 // Access to crate names passed via `--extern` through prelude
455452 ( active, extern_prelude, "1.27.0" , Some ( 44660 ) , Some ( Edition :: Edition2018 ) ) ,
456453
457- // Scoped attributes
458- ( active, tool_attributes, "1.25.0" , Some ( 44690 ) , None ) ,
459454 // Scoped lints
460455 ( active, tool_lints, "1.28.0" , Some ( 44690 ) , None ) ,
461456
@@ -652,6 +647,10 @@ declare_features! (
652647 ( accepted, use_extern_macros, "1.30.0" , Some ( 35896 ) , None ) ,
653648 // Allows keywords to be escaped for use as identifiers
654649 ( accepted, raw_identifiers, "1.30.0" , Some ( 48589 ) , None ) ,
650+ // Attributes scoped to tools
651+ ( accepted, tool_attributes, "1.30.0" , Some ( 44690 ) , None ) ,
652+ // Allows multi-segment paths in attributes and derives
653+ ( accepted, proc_macro_path_invoc, "1.30.0" , Some ( 38356 ) , None ) ,
655654) ;
656655
657656// If you change this, please modify src/doc/unstable-book as well. You must
0 commit comments