From c5d91576bc23943c7806422eafab7de3e79dcc5a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 28 Feb 2024 21:37:23 +0000 Subject: [PATCH] chore(deps): update rust crate syn to v2 --- crates/macro-testing-utils/Cargo.toml | 2 +- crates/marine-macro-impl/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/macro-testing-utils/Cargo.toml b/crates/macro-testing-utils/Cargo.toml index d0c5c940..10862daf 100644 --- a/crates/macro-testing-utils/Cargo.toml +++ b/crates/macro-testing-utils/Cargo.toml @@ -18,4 +18,4 @@ doctest = false [dependencies] quote = "1.0.33" proc-macro2 = "1.0.69" -syn = { version = '1.0.109', features = ['full'] } +syn = { version = '2.0.52', features = ['full'] } diff --git a/crates/marine-macro-impl/Cargo.toml b/crates/marine-macro-impl/Cargo.toml index 6eb33adb..78382bfa 100644 --- a/crates/marine-macro-impl/Cargo.toml +++ b/crates/marine-macro-impl/Cargo.toml @@ -18,7 +18,7 @@ quote = "1.0.33" proc-macro2 = "1.0.69" serde = { version = "1.0.189", features = ["derive"] } serde_json = "1.0.107" -syn = { version = '1.0.109', features = ['full', "extra-traits"] } +syn = { version = '2.0.52', features = ['full', "extra-traits"] } [dev-dependencies] pretty_assertions = "1.4.0"