From 402d3d70b412e5fc35e27922b56a94751a48873e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= <76261501+zecakeh@users.noreply.github.com> Date: Thu, 11 Apr 2024 12:31:48 +0200 Subject: [PATCH] chore: Disable default features of proc-macro-error This allows to not add syn 1 to the dependency tree as it is not used. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 6baa1bc..851fe3b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ proc-macro = true [dependencies] quote = "1" proc-macro2 = "1" -proc-macro-error = "1" +proc-macro-error = { version = "1", default-features = false } itertools = "0.10" syn = "2" include_dir = "0.7"