From 3f007c8a683417fc633cf5447c92b6cef9432809 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Thu, 13 Oct 2022 11:18:35 +0200 Subject: [PATCH] Enable the Eq and Debug traits for syn Temporary workaround for #38. --- nih_plug_derive/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nih_plug_derive/Cargo.toml b/nih_plug_derive/Cargo.toml index 0911d96a..e43ad305 100644 --- a/nih_plug_derive/Cargo.toml +++ b/nih_plug_derive/Cargo.toml @@ -9,5 +9,5 @@ license = "ISC" proc-macro = true [dependencies] -syn = "1.0" +syn = { version = "1.0", features = ["extra-traits"] } quote = "1.0"