@@ -206,6 +206,8 @@ declare_features! (
206206 ( active, rustc_allow_const_fn_unstable, "1.49.0" , Some ( 69399 ) , None ) ,
207207 /// Allows using compiler's own crates.
208208 ( active, rustc_private, "1.0.0" , Some ( 27812 ) , None ) ,
209+ /// Allows using internal rustdoc features like `doc(primitive)` or `doc(keyword)`.
210+ ( active, rustdoc_internals, "1.58.0" , Some ( 90418 ) , None ) ,
209211 /// Allows using `#[start]` on a function indicating that it is the program entrypoint.
210212 ( active, start, "1.0.0" , Some ( 29633 ) , None ) ,
211213 /// Allows using `#[structural_match]` which indicates that a type is structurally matchable.
@@ -366,12 +368,8 @@ declare_features! (
366368 ( active, doc_cfg, "1.21.0" , Some ( 43781 ) , None ) ,
367369 /// Allows `#[doc(cfg_hide(...))]`.
368370 ( active, doc_cfg_hide, "1.57.0" , Some ( 43781 ) , None ) ,
369- /// Allows using `#[doc(keyword = "...")]`.
370- ( active, doc_keyword, "1.28.0" , Some ( 51315 ) , None ) ,
371371 /// Allows `#[doc(masked)]`.
372372 ( active, doc_masked, "1.21.0" , Some ( 44027 ) , None ) ,
373- /// Allows using doc(primitive) without a future-incompat warning
374- ( active, doc_primitive, "1.56.0" , Some ( 88070 ) , None ) ,
375373 /// Allows `X..Y` patterns.
376374 ( active, exclusive_range_pattern, "1.11.0" , Some ( 37854 ) , None ) ,
377375 /// Allows exhaustive pattern matching on types that contain uninhabited types.
0 commit comments