From 8a659af82cbc4d533a0505339a522b4082e732fb Mon Sep 17 00:00:00 2001 From: sgj123456 <94758390+sgj123456@users.noreply.github.com> Date: Thu, 11 Jul 2024 00:32:46 +0800 Subject: [PATCH] gpui_macros: Enable `extra-traits` feature for `syn` (#14067) Must enable extra-traits of syn feature to enable Debug trait of Visibility Release Notes: - N/A --------- Co-authored-by: Marshall Bowers --- crates/gpui_macros/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/gpui_macros/Cargo.toml b/crates/gpui_macros/Cargo.toml index 4ce52f7e59..304fc37d32 100644 --- a/crates/gpui_macros/Cargo.toml +++ b/crates/gpui_macros/Cargo.toml @@ -16,4 +16,4 @@ doctest = false [dependencies] proc-macro2 = "1.0.66" quote = "1.0.9" -syn = { version = "1.0.72", features = ["full"] } +syn = { version = "1.0.72", features = ["full", "extra-traits"] }