From bd06c9a14a52bf36ce0b56687189c52a71c2a751 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Jul 2026 03:07:03 +0000 Subject: [PATCH] chore(deps)(deps): update syn requirement in the proc-macro group Updates the requirements on [syn](https://github.com/dtolnay/syn) to permit the latest version. Updates `syn` to 3.0.1 - [Release notes](https://github.com/dtolnay/syn/releases) - [Commits](https://github.com/dtolnay/syn/compare/2.0.0...3.0.1) --- updated-dependencies: - dependency-name: syn dependency-version: 3.0.1 dependency-type: direct:production dependency-group: proc-macro ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- crates/entity-derive-impl/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b19fc44..591bec9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,7 @@ repository = "https://github.com/RAprogramm/entity-derive" entity-core = { path = "crates/entity-core", version = "0.10" } entity-derive = { path = "crates/entity-derive", version = "0.22" } entity-derive-impl = { path = "crates/entity-derive-impl", version = "0.20" } -syn = { version = "2", features = ["full", "extra-traits", "parsing"] } +syn = { version = "3", features = ["full", "extra-traits", "parsing"] } quote = "1" proc-macro2 = "1" darling = "0.23" diff --git a/crates/entity-derive-impl/Cargo.toml b/crates/entity-derive-impl/Cargo.toml index 6ac9e83..b68457f 100644 --- a/crates/entity-derive-impl/Cargo.toml +++ b/crates/entity-derive-impl/Cargo.toml @@ -67,7 +67,7 @@ migrations = [] projections = [] [dependencies] -syn = { version = "2", features = ["full", "extra-traits", "parsing"] } +syn = { version = "3", features = ["full", "extra-traits", "parsing"] } quote = "1" proc-macro2 = "1" darling = "0.23"