From ef34f09f0e95878b867a108d937be79ad6f94705 Mon Sep 17 00:00:00 2001 From: Demur Rumed Date: Sat, 18 Nov 2023 15:09:50 +0000 Subject: [PATCH] enable visit/visit-mut features --- derive/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/derive/Cargo.toml b/derive/Cargo.toml index e868790a02..2814738a7b 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -18,6 +18,6 @@ edition = "2021" proc-macro = true [dependencies] -syn = { version = "2.0", features = ["full"] } +syn = { version = "2.0", features = ["full", "visit", "visit-mut"] } proc-macro2 = "1.0" quote = "1.0"