From 757b5ae41deca1ccf3b76177b4d2d1a1deb71503 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 May 2023 16:08:05 +0000 Subject: [PATCH] Update syn requirement from 1.0 to 2.0 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/1.0.0...2.0.15) --- updated-dependencies: - dependency-name: syn dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/bevy_derive/Cargo.toml | 2 +- crates/bevy_macro_utils/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_derive/Cargo.toml b/crates/bevy_derive/Cargo.toml index e09ff1bd5f41e..f0e9688f2115b 100644 --- a/crates/bevy_derive/Cargo.toml +++ b/crates/bevy_derive/Cargo.toml @@ -15,4 +15,4 @@ proc-macro = true bevy_macro_utils = { path = "../bevy_macro_utils", version = "0.11.0-dev" } quote = "1.0" -syn = { version = "1.0", features = ["full"] } +syn = { version = "2.0", features = ["full"] } diff --git a/crates/bevy_macro_utils/Cargo.toml b/crates/bevy_macro_utils/Cargo.toml index 76cb1d690f295..08c1d0243b96e 100644 --- a/crates/bevy_macro_utils/Cargo.toml +++ b/crates/bevy_macro_utils/Cargo.toml @@ -10,6 +10,6 @@ keywords = ["bevy"] [dependencies] toml_edit = "0.19" -syn = "1.0" +syn = "2.0" quote = "1.0" rustc-hash = "1.0"