Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

Commit

Permalink
gtk3-macros: enable default features of syn
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
decathorpe authored and sdroege committed Mar 27, 2023
1 parent 444e48d commit b332f9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gtk3-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ anyhow = "1.0"
proc-macro-error = "1.0"
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "1.0", default-features = false, features = ["full"] }
syn = { version = "1.0", features = ["full"] }
proc-macro-crate = "1.0"

[dev-dependencies]
Expand Down

0 comments on commit b332f9b

Please sign in to comment.