You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the page shows the default feature, but there is no easy way to see which features are transitively active by default.
This would require going through the features list and activate all that are transitively reachable from default. Also probably steer clear from infinite runtime due to cycles by some sort of visited marker or cycle detection.
The text was updated successfully, but these errors were encountered:
Swatinem
added a commit
to Swatinem/docs.rs
that referenced
this issue
Jun 24, 2024
Fixesrust-lang#2531 by marking every (transitive) default feature with a `*`.
The features list is already sorted according to depth-first `"default"` order first, and according to the number of sub-features.
I changed that so the secondary sort order is alphabetic, as that might make more sense than sorting by number of sub-features.
Currently, the page shows the default feature, but there is no easy way to see which features are transitively active by default.
This would require going through the features list and activate all that are transitively reachable from
default
. Also probably steer clear from infinite runtime due to cycles by some sort of visited marker or cycle detection.The text was updated successfully, but these errors were encountered: