Skip to content

Commit b77b6e2

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 0ed206f commit b77b6e2

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
@@ -22,7 +22,7 @@ proc-macro-crate = "1.0"
2222
proc-macro-error = "1.0"
2323
proc-macro2 = "1.0"
2424
quote = "1.0"
25-
syn = {version = "1.0", default-features = false, features = ["full"]}
25+
syn = {version = "1.0", features = ["full"]}
2626

2727
[dev-dependencies]
2828
futures-channel = "0.3"

0 commit comments

Comments
 (0)