From f2901914f5e65e6b9a1c3665022884439c09ea2c Mon Sep 17 00:00:00 2001 From: Boshen Date: Tue, 6 Aug 2024 16:50:05 +0800 Subject: [PATCH] fix(oxc_ast_macros): fix `syn` lacking features to build --- crates/oxc_ast_macros/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/oxc_ast_macros/Cargo.toml b/crates/oxc_ast_macros/Cargo.toml index 6e3064e988436..c73f75d991386 100644 --- a/crates/oxc_ast_macros/Cargo.toml +++ b/crates/oxc_ast_macros/Cargo.toml @@ -22,5 +22,5 @@ doctest = false [dependencies] quote = { workspace = true } -syn = { workspace = true, features = ["full"] } +syn = { workspace = true, features = ["full", "parsing", "proc-macro", "printing"] } proc-macro2 = { workspace = true }