From 3e12ff84ede8f6fa0c3cd74337ec50f1de2f829f Mon Sep 17 00:00:00 2001 From: Vadim Kaushan Date: Sun, 10 Jul 2022 09:43:26 +0300 Subject: [PATCH] Fix syn dependency version --- CHANGELOG.md | 2 ++ macros/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 04c6d5c5..039ab77c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,11 +7,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +- [#684]: Fix `syn` dependency version in `defmt-macros`. - [#682]: defmt-print: exit when stdin is closed - [#681]: Make use of i/o locking being static since rust `1.61`. - [#679]: Add changelog enforcer - [#678]: Satisfy clippy +[#684]: https://github.com/knurling-rs/defmt/pull/684 [#682]: https://github.com/knurling-rs/defmt/pull/682 [#681]: https://github.com/knurling-rs/defmt/pull/681 [#679]: https://github.com/knurling-rs/defmt/pull/679 diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 57569d66..c1fc803c 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -21,7 +21,7 @@ defmt-parser = { path = "../parser", features = ["unstable"], version = "=0.3.1" proc-macro-error = "1" proc-macro2 = "1" quote = "1" -syn = { version = "1", features = ["full"] } +syn = { version = "1.0.56", features = ["full"] } [dev_dependencies] maplit = "1"