From 108e2f1cfee64a7e8b7e7b2e88c54117de8e1831 Mon Sep 17 00:00:00 2001 From: kajacx Date: Sun, 10 Mar 2024 12:47:51 +0100 Subject: [PATCH] Fix syn feature flags --- crates/wasm-bridge-macros/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/wasm-bridge-macros/Cargo.toml b/crates/wasm-bridge-macros/Cargo.toml index c2464c6..e2184bf 100644 --- a/crates/wasm-bridge-macros/Cargo.toml +++ b/crates/wasm-bridge-macros/Cargo.toml @@ -16,7 +16,7 @@ anyhow = { workspace = true } heck = { workspace = true } proc-macro2 = { version = "1.0" } quote = { version = "1.0" } -syn = { version = "2.0.25", features = ["extra-traits"] } +syn = { version = "2.0.25", features = ["extra-traits", "full"] } wasmtime-component-util = { workspace = true } wasmtime-wit-bindgen = { workspace = true } wit-parser = { version = "0.13.0" }