rust-lang / docs.rs

crates.io documentation generator
https://docs.rs
MIT License
956 stars 193 forks source link

Features page: mark all active by default features #2531

Open llogiq opened 1 week ago

llogiq commented 1 week ago

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.