From 916f771ab09604908973b01676ea5ce4f99d0453 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Mon, 26 Aug 2024 22:56:19 +0900 Subject: [PATCH] codegen: Disable clone-impls feature of syn --- tools/codegen/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/codegen/Cargo.toml b/tools/codegen/Cargo.toml index 3b71288..d83d53c 100644 --- a/tools/codegen/Cargo.toml +++ b/tools/codegen/Cargo.toml @@ -9,7 +9,7 @@ globset = { version = "0.4", default-features = false } prettyplease = "0.2" proc-macro2 = { version = "1", default-features = false } quote = { version = "1", default-features = false } -syn = { version = "2", default-features = false, features = ["parsing", "printing", "clone-impls", "full", "visit-mut"] } +syn = { version = "2", default-features = false, features = ["parsing", "printing", "full", "visit-mut"] } [lints] workspace = true