Was playing around with the stylebuilder from this repo (very cool) and noticed that adding the dependency pulled in a couple of extra things via bevy_mod_picking. In my project I have default-features off for this crate but because stylebuilder depends on bevy_mod_picking with default features they all get enabled anyway.
Most crates here don't need anything besides the core (AFAICT) so using default-features = false and enabling where needed could make sense.
Was playing around with the stylebuilder from this repo (very cool) and noticed that adding the dependency pulled in a couple of extra things via bevy_mod_picking. In my project I have default-features off for this crate but because stylebuilder depends on bevy_mod_picking with default features they all get enabled anyway.
Most crates here don't need anything besides the core (AFAICT) so using default-features = false and enabling where needed could make sense.