From a61f45fb6331c2e2e19f24833fe7650f8b4432a6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 May 2023 02:20:14 +0000 Subject: [PATCH] Bump proc-macro2 from 1.0.58 to 1.0.59 (#1092) Bumps [proc-macro2](https://github.com/dtolnay/proc-macro2) from 1.0.58 to 1.0.59. - [Release notes](https://github.com/dtolnay/proc-macro2/releases) - [Commits](https://github.com/dtolnay/proc-macro2/compare/1.0.58...1.0.59) --- 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 2b7473fb..eda1c75c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1623,9 +1623,9 @@ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" [[package]] name = "proc-macro2" -version = "1.0.58" +version = "1.0.59" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa1fb82fc0c281dd9671101b66b771ebbe1eaf967b96ac8740dcba4b70005ca8" +checksum = "6aeca18b86b413c660b781aa319e4e2648a3e6f9eadc9b47e9038e6fe9f3451b" dependencies = [ "unicode-ident", ] diff --git a/crates/leon-macros/Cargo.toml b/crates/leon-macros/Cargo.toml index bdd50324..2502d5c6 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.58" +proc-macro2 = "1.0.59" syn = { version = "2.0.16", default-features = false, features = ["proc-macro", "parsing"] } quote = "1.0.27"