From 8c4f5c60b7ccebc2bcff8c8dc5dfa98171ced06a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Fri, 27 Feb 2026 14:02:49 +0100 Subject: [PATCH] fix(ffi-macros): Fix compilation in case we only build this single crate --- bindings/matrix-sdk-ffi-macros/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bindings/matrix-sdk-ffi-macros/Cargo.toml b/bindings/matrix-sdk-ffi-macros/Cargo.toml index 1d229b8f6..61dc24824 100644 --- a/bindings/matrix-sdk-ffi-macros/Cargo.toml +++ b/bindings/matrix-sdk-ffi-macros/Cargo.toml @@ -17,9 +17,9 @@ test = false doctest = false [dependencies] -proc-macro2.workspace = true +proc-macro2 = { workspace = true , features = ["proc-macro"] } quote.workspace = true -syn = { workspace = true, features = ["full", "extra-traits"] } +syn = { workspace = true, features = ["full", "extra-traits", "proc-macro"] } [lints] workspace = true