@@ -206,6 +206,8 @@ declare_features! (
206
206
( active, rustc_allow_const_fn_unstable, "1.49.0" , Some ( 69399 ) , None ) ,
207
207
/// Allows using compiler's own crates.
208
208
( 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 ) ,
209
211
/// Allows using `#[start]` on a function indicating that it is the program entrypoint.
210
212
( active, start, "1.0.0" , Some ( 29633 ) , None ) ,
211
213
/// Allows using `#[structural_match]` which indicates that a type is structurally matchable.
@@ -366,12 +368,8 @@ declare_features! (
366
368
( active, doc_cfg, "1.21.0" , Some ( 43781 ) , None ) ,
367
369
/// Allows `#[doc(cfg_hide(...))]`.
368
370
( 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 ) ,
371
371
/// Allows `#[doc(masked)]`.
372
372
( 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 ) ,
375
373
/// Allows `X..Y` patterns.
376
374
( active, exclusive_range_pattern, "1.11.0" , Some ( 37854 ) , None ) ,
377
375
/// Allows exhaustive pattern matching on types that contain uninhabited types.
0 commit comments