From b60d0eac9e632859e898244516f76e22c1f89f7b Mon Sep 17 00:00:00 2001 From: Rahul Kumar Date: Fri, 24 Jan 2025 10:27:39 -0800 Subject: [PATCH] add missing feature flag --- libs/type_dispatch_macros/Cargo.toml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/libs/type_dispatch_macros/Cargo.toml b/libs/type_dispatch_macros/Cargo.toml index 5a08f7a6..a13a5c4c 100644 --- a/libs/type_dispatch_macros/Cargo.toml +++ b/libs/type_dispatch_macros/Cargo.toml @@ -5,10 +5,8 @@ edition = "2021" description = "Macros for the `type_dispatch` crate." license = "BSD-3-Clause" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - [dependencies] -syn = { version = "2", features = ["full"] } +syn = { version = "2", features = ["full", "extra-traits"] } quote = "1" proc-macro2 = "1" proc-macro-crate = "1"