From 084b549928dce3b5020be235a904a005877fb68d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Jul 2026 22:44:00 +0000 Subject: [PATCH] chore(deps): Update syn requirement from 2.0 to 3.0 in /rust Updates the requirements on [syn](https://github.com/dtolnay/syn) to permit the latest version. - [Release notes](https://github.com/dtolnay/syn/releases) - [Commits](https://github.com/dtolnay/syn/compare/2.0.0...3.0.2) --- updated-dependencies: - dependency-name: syn dependency-version: 3.0.2 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- rust/links-notation-macro/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/links-notation-macro/Cargo.toml b/rust/links-notation-macro/Cargo.toml index 9ad0076..a68e583 100644 --- a/rust/links-notation-macro/Cargo.toml +++ b/rust/links-notation-macro/Cargo.toml @@ -10,6 +10,6 @@ repository = "https://github.com/link-foundation/links-notation" proc-macro = true [dependencies] -syn = { version = "2.0", features = ["full", "extra-traits"] } +syn = { version = "3.0", features = ["full", "extra-traits"] } quote = "1.0" proc-macro2 = "1.0"