From e1fcd94ef1e3f6e339f50d9bab70adfa738605c0 Mon Sep 17 00:00:00 2001 From: Charlotte Meyer Date: Tue, 1 Nov 2022 15:16:06 +0000 Subject: [PATCH] fix(builtin-proc): enable missing syn features Signed-off-by: Charlotte Meyer --- crates/oyster_builtin_proc/Cargo.toml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/crates/oyster_builtin_proc/Cargo.toml b/crates/oyster_builtin_proc/Cargo.toml index e51c192..a2ebdbc 100644 --- a/crates/oyster_builtin_proc/Cargo.toml +++ b/crates/oyster_builtin_proc/Cargo.toml @@ -13,7 +13,15 @@ darling = "~0.14.1" proc-macro-crate = "^1.2.1" proc-macro2 = { version = "1.0.47", default-features = false } quote = { version = "^1.0.21", default-features = false } -syn = { version = "^1.0.102", default-features = false, features = [ "full" ] } + +[dependencies.syn] +version = "^1.0.102" +default-features = false +features = [ + "full", + "parsing", + "proc-macro", +] [dev-dependencies] oyster_runtime = { version = "0.0.0", path = "../oyster_runtime" }