From 167904f995ef83dc7ac56dd6ec11dc1a5ac9ba55 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 19 Jul 2026 00:41:06 +0000 Subject: [PATCH 1/2] Update Rust crate syn to v3 --- macros/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 75b9be9..78446ec 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -20,4 +20,4 @@ proc-macro = true [dependencies] proc-macro2 = { version = "1.0.81", features = ["span-locations"] } quote = "1.0.36" -syn = { version = "2.0.60", features = ["full", "visit", "visit-mut"] } +syn = { version = "3.0.0", features = ["full", "visit", "visit-mut"] } From b6a52e546d2bb0ae78b6125cca77bcaa82d45a98 Mon Sep 17 00:00:00 2001 From: Vincent Esche Date: Sun, 2 Aug 2026 17:01:25 +0200 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4daf926..25be694 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,7 +24,8 @@ Please make sure to add your changes to the appropriate categories: ### Changed -- n/a +- Updated dependencies: + - `syn` from `2.0.60` to `3.0.0` ### Deprecated