From 99fceeb741d8d352fb3c61362b448794dbc98b8e Mon Sep 17 00:00:00 2001 From: Predrag Gruevski <2348618+obi1kenobi@users.noreply.github.com> Date: Thu, 6 Feb 2025 16:32:12 -0500 Subject: [PATCH] Prune outdated docs info from manifest schema. (#761) --- src/rustdoc_schema.graphql | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/src/rustdoc_schema.graphql b/src/rustdoc_schema.graphql index 8fa73c66..fcf803ed 100644 --- a/src/rustdoc_schema.graphql +++ b/src/rustdoc_schema.graphql @@ -35,11 +35,7 @@ type Crate { item: [Item!] """ - User-facing features that are present in the crate. - - We heuristically disregard features prefixed with `_`, and features introduced by - optional dependencies that are never referenced by any other feature. - We deem those features to be non-user-facing, and do not show them here. + Features that are present in the crate. If feature data is not loaded into the adapter, this edge will not have any instances. """ @@ -49,11 +45,8 @@ type Crate { User-facing features that are enabled by default, either directly or transitively. Directly enabled features are explicitly enabled by the `default` feature. Such features - may in turn enable other features, and so on — those are transitively enabled default features. - - We heuristically disregard features prefixed with `_`, and features introduced by - optional dependencies that are never referenced by any other feature. - We deem those features to be non-user-facing, and do not show them here. + may in turn enable other features, and so on — those are *transitively* enabled default features, + which are not included here. If feature data is not loaded into the adapter, this edge will not have any instances. """