From 71f3a6cdab7fb2f8d481897fcad3569774d53977 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Mar 2023 10:59:33 +0000 Subject: [PATCH] build(deps): 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.2) --- updated-dependencies: - dependency-name: syn dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- attributes/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/attributes/Cargo.toml b/attributes/Cargo.toml index 4a4c23c9..30f60ec3 100644 --- a/attributes/Cargo.toml +++ b/attributes/Cargo.toml @@ -16,7 +16,7 @@ include = ["/src/*", "/Cargo.toml", "/README.md"] proc-macro = true [dependencies] -syn = { version = "1.0", features = ["full"] } +syn = { version = "2.0", features = ["full"] } quote = "1.0" proc-macro2 = "1.0" itertools = "0.11"