From 2f79e7d19d7d3330739a6b5757820e6b13540f9c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 19 Jul 2026 15:12:56 +0000 Subject: [PATCH] Update syn requirement from 2.0 to 3.0 in the dependencies group Updates the requirements on [syn](https://github.com/dtolnay/syn) to permit the latest version. Updates `syn` to 3.0.0 - [Release notes](https://github.com/dtolnay/syn/releases) - [Commits](https://github.com/dtolnay/syn/compare/2.0.0...3.0.0) --- updated-dependencies: - dependency-name: syn dependency-version: 3.0.0 dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] --- concatsql_macro/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/concatsql_macro/Cargo.toml b/concatsql_macro/Cargo.toml index 59d2dee..7e7db91 100644 --- a/concatsql_macro/Cargo.toml +++ b/concatsql_macro/Cargo.toml @@ -16,7 +16,7 @@ proc-macro = true [dependencies] proc-macro2 = "1.0" proc-macro-error = "1.0" -syn = { version = "2.0", features = ["full", "extra-traits"] } +syn = { version = "3.0", features = ["full", "extra-traits"] } quote = "1.0" nom = "8.0.0"