From 249e4c46343e46fdcc17e67ac091547b65c046a5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 May 2023 03:01:54 +0000 Subject: [PATCH] Bump proc-macro2 from 1.0.56 to 1.0.57 (#1061) Bumps [proc-macro2](https://github.com/dtolnay/proc-macro2) from 1.0.56 to 1.0.57. - [Release notes](https://github.com/dtolnay/proc-macro2/releases) - [Commits](https://github.com/dtolnay/proc-macro2/compare/1.0.56...1.0.57) --- updated-dependencies: - dependency-name: proc-macro2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- crates/leon-macros/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c58803a0..2872fdc7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1624,9 +1624,9 @@ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" [[package]] name = "proc-macro2" -version = "1.0.56" +version = "1.0.57" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435" +checksum = "c4ec6d5fe0b140acb27c9a0444118cf55bfbb4e0b259739429abb4521dd67c16" dependencies = [ "unicode-ident", ] diff --git a/crates/leon-macros/Cargo.toml b/crates/leon-macros/Cargo.toml index ccc55b48..44d224b9 100644 --- a/crates/leon-macros/Cargo.toml +++ b/crates/leon-macros/Cargo.toml @@ -14,6 +14,6 @@ proc-macro = true [dependencies] leon = { version = "2.0.0", path = "../leon", default-features = false } -proc-macro2 = "1.0.56" +proc-macro2 = "1.0.57" syn = { version = "2.0.16", default-features = false, features = ["proc-macro", "parsing"] } quote = "1.0.27"