From 9c01034c6eccae62b23094fcd520dde61e5a5319 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 7 Dec 2023 08:25:03 +0000 Subject: [PATCH] Bump syn from 1.0.109 to 2.0.39 Bumps [syn](https://github.com/dtolnay/syn) from 1.0.109 to 2.0.39. - [Release notes](https://github.com/dtolnay/syn/releases) - [Commits](https://github.com/dtolnay/syn/compare/1.0.109...2.0.39) --- updated-dependencies: - dependency-name: syn dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 2 +- derive/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 815fbd6..b4822b0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -333,7 +333,7 @@ version = "0.12.3" dependencies = [ "proc-macro2 1.0.70", "quote", - "syn 1.0.109", + "syn 2.0.39", ] [[package]] diff --git a/derive/Cargo.toml b/derive/Cargo.toml index 749b09a..8dfd44d 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -11,7 +11,7 @@ proc-macro = true path = "lib.rs" [dependencies.syn] -version = "1.0" +version = "2.0" default-features = false features = ["derive", "clone-impls", "parsing", "printing", "proc-macro"] [dependencies.quote]