From e4a67d939a6ed72590c28d694b2e391d88aaf3a1 Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Tue, 18 Aug 2026 09:15:35 +0000 Subject: [PATCH] fix(deps): update rust crate syn to v3 --- Cargo.lock | 4 ++-- ctest/Cargo.toml | 2 +- libc-test/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5865d168aa6b..2e661a31f15c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -109,7 +109,7 @@ dependencies = [ "pretty_assertions", "proc-macro2", "quote", - "syn 2.0.119", + "syn 3.0.3", "tempfile", "thiserror", ] @@ -199,7 +199,7 @@ dependencies = [ "libc 1.0.0-alpha.4", "proc-macro2", "regex", - "syn 2.0.119", + "syn 3.0.3", ] [[package]] diff --git a/ctest/Cargo.toml b/ctest/Cargo.toml index 8d71ccb896f7..744d16cf8ecb 100644 --- a/ctest/Cargo.toml +++ b/ctest/Cargo.toml @@ -13,7 +13,7 @@ askama = "0.14.0" cc = "1.4.2" proc-macro2 = { version = "1.0.103", features = ["span-locations"] } quote = "1.0.41" -syn = { version = "2.0.108", features = ["full", "visit", "extra-traits"] } +syn = { version = "3.0.0", features = ["full", "visit", "extra-traits"] } tempfile = "3.23.0" thiserror = "2.0.17" diff --git a/libc-test/Cargo.toml b/libc-test/Cargo.toml index bdeb5f503925..04ea3cdd6a88 100644 --- a/libc-test/Cargo.toml +++ b/libc-test/Cargo.toml @@ -13,7 +13,7 @@ cfg-if = "1.0.4" libc = { path = "..", default-features = false } [dev-dependencies] -syn = { version = "2.0.108", features = ["full", "visit"] } +syn = { version = "3.0.0", features = ["full", "visit"] } proc-macro2 = { version = "1.0.103", features = ["span-locations"] } glob = "0.3.3" annotate-snippets = { version = "0.11.5", features = ["testing-colors"] }