From 6667a841b93cea259bb3a67badc7bad0952f200d Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Mon, 17 May 2021 00:49:25 +0200 Subject: [PATCH] events: Add missing syn cargo feature `cargo check --workspace` worked without it because it was activated from elsewhere --- crates/ruma-events-macros/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ruma-events-macros/Cargo.toml b/crates/ruma-events-macros/Cargo.toml index b83e5d29..6c7c3c41 100644 --- a/crates/ruma-events-macros/Cargo.toml +++ b/crates/ruma-events-macros/Cargo.toml @@ -19,7 +19,7 @@ version = "0.22.0-alpha.3" proc-macro-crate = "1.0.0" proc-macro2 = "1.0.24" quote = "1.0.8" -syn = { version = "1.0.57", features = ["full"] } +syn = { version = "1.0.57", features = ["extra-traits", "full"] } [lib] proc-macro = true