events: Add missing syn cargo feature

`cargo check --workspace` worked without it because it was activated from elsewhere
This commit is contained in:
Jonas Platte 2021-05-17 00:49:25 +02:00
parent 4d3cb94d99
commit 6667a841b9
No known key found for this signature in database
GPG Key ID: 7D261D771D915378

View File

@ -19,7 +19,7 @@ version = "0.22.0-alpha.3"
proc-macro-crate = "1.0.0" proc-macro-crate = "1.0.0"
proc-macro2 = "1.0.24" proc-macro2 = "1.0.24"
quote = "1.0.8" quote = "1.0.8"
syn = { version = "1.0.57", features = ["full"] } syn = { version = "1.0.57", features = ["extra-traits", "full"] }
[lib] [lib]
proc-macro = true proc-macro = true