Skip to content

Commit 623ea2a

Browse files
decathorpesdroege
authored andcommitted
gtk4-macros: enable default features of syn
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.
1 parent 9ec5fed commit 623ea2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gtk4-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ proc-macro-crate = "1.0"
2626
proc-macro-error = "1.0"
2727
proc-macro2 = "1.0"
2828
quote = "1.0"
29-
syn = {version = "1.0", default-features = false, features = ["full"]}
29+
syn = {version = "1.0", features = ["full"]}
3030

3131
[dev-dependencies]
3232
futures-channel = "0.3"

0 commit comments

Comments
 (0)