From 0222188bbb7b47b5150542faec09b9c4e466e7de Mon Sep 17 00:00:00 2001 From: Brendan Abolivier Date: Mon, 20 Nov 2023 15:49:02 +0000 Subject: [PATCH] Bug 1865629 - Fix the feature used in syn dependency for xpcom_macros. r=xpcom-reviewers,emilio Differential Revision: https://phabricator.services.mozilla.com/D194075 --- xpcom/rust/xpcom/xpcom_macros/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xpcom/rust/xpcom/xpcom_macros/Cargo.toml b/xpcom/rust/xpcom/xpcom_macros/Cargo.toml index 26f7d7b192a1..78238ae6d189 100644 --- a/xpcom/rust/xpcom/xpcom_macros/Cargo.toml +++ b/xpcom/rust/xpcom/xpcom_macros/Cargo.toml @@ -9,7 +9,7 @@ license = "MPL-2.0" proc-macro = true [dependencies] -syn = "2" +syn = { version = "2", features = ["full"] } quote = "1" proc-macro2 = "1" lazy_static = "1.0"