From 345bb22287a1aa9f70e551596c15dcf63c267217 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Mar 2025 14:20:42 +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.100) --- updated-dependencies: - dependency-name: syn dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- saphir_cli/Cargo.toml | 2 +- saphir_macro/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/saphir_cli/Cargo.toml b/saphir_cli/Cargo.toml index 9380abb..1596808 100644 --- a/saphir_cli/Cargo.toml +++ b/saphir_cli/Cargo.toml @@ -17,7 +17,7 @@ name = "saphir" path = "src/main.rs" [dependencies] -syn = { version = "1.0", features = ["full", "extra-traits"] } +syn = { version = "2.0", features = ["full", "extra-traits"] } clap = { version = "4.0", features = ["derive"] } serde = "1.0" serde_derive = "1.0" diff --git a/saphir_macro/Cargo.toml b/saphir_macro/Cargo.toml index 14b145e..0852a23 100644 --- a/saphir_macro/Cargo.toml +++ b/saphir_macro/Cargo.toml @@ -25,5 +25,5 @@ tracing-instrument = [] [dependencies] proc-macro2 = "1.0" quote = "1.0" -syn = { version = "1.0", features = ["full", "extra-traits"] } +syn = { version = "2.0", features = ["full", "extra-traits"] } http = "0.2"