From 607d7afd07765420a5a5be99b7757ab3e4d78606 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 4 May 2023 03:04:19 +0000 Subject: [PATCH] Update syn requirement from 1 to 2 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] --- lunatic-macros/Cargo.toml | 2 +- lunatic-test/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lunatic-macros/Cargo.toml b/lunatic-macros/Cargo.toml index 09cfe6b..1c3dac0 100644 --- a/lunatic-macros/Cargo.toml +++ b/lunatic-macros/Cargo.toml @@ -13,7 +13,7 @@ convert_case = "0.6" darling = "0.14" proc-macro2 = "1.0" quote = "1" -syn = { version = "1", features = ["full", "extra-traits"] } +syn = { version = "2", features = ["full", "extra-traits"] } [lib] proc-macro = true diff --git a/lunatic-test/Cargo.toml b/lunatic-test/Cargo.toml index 5b41887..0d4eec4 100644 --- a/lunatic-test/Cargo.toml +++ b/lunatic-test/Cargo.toml @@ -10,7 +10,7 @@ license = "Apache-2.0/MIT" [dependencies] quote = "1" -syn = { version = "1", features = ["full", "extra-traits"] } +syn = { version = "2", features = ["full", "extra-traits"] } [dev-dependencies] lunatic = { path = "..", features = ["json_serializer", "msgpack_serializer"] }