viridia / quill

A reactive UI framework for Bevy
Apache License 2.0
125 stars 12 forks source link

Remove default features from the workspace bevy_mod_picking dependency. #2

Closed keis closed 3 months ago

keis commented 3 months ago

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.