gtk-rs / gtk3-rs

Rust bindings for GTK 3
https://gtk-rs.org
MIT License
508 stars 90 forks source link

gtk3-macros: enable default features of syn #818

Closed decathorpe closed 1 year ago

decathorpe commented 1 year ago

The code in this crate uses features of "syn" which are only present when the default features are enabled. This previously worked "by accident" because other crates in the dependency tree pulled in the "default" feature of syn, but these crates have started moving to syn v2, so this is no longer the case.

GuillaumeGomez commented 1 year ago

Thanks!