From f0f58334d82fd6c0a1d8a59de7054952cb993a9f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Sep 2024 04:45:46 -0700 Subject: [PATCH] Bump syn from 2.0.75 to 2.0.77 (#668) Bumps [syn](https://github.com/dtolnay/syn) from 2.0.75 to 2.0.77. - [Release notes](https://github.com/dtolnay/syn/releases) - [Commits](https://github.com/dtolnay/syn/compare/2.0.75...2.0.77) --- updated-dependencies: - dependency-name: syn 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 ++-- typify-impl/Cargo.toml | 4 ++-- typify-test/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6c81ebb3..52e77ae1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -991,9 +991,9 @@ checksum = "5ee073c9e4cd00e28217186dbe12796d692868f432bf2e97ee73bed0c56dfa01" [[package]] name = "syn" -version = "2.0.75" +version = "2.0.77" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f6af063034fc1935ede7be0122941bafa9bacb949334d090b77ca98b5817c7d9" +checksum = "9f35bcdf61fd8e7be6caf75f429fdca8beb3ed76584befb503b1569faee373ed" dependencies = [ "proc-macro2", "quote", diff --git a/typify-impl/Cargo.toml b/typify-impl/Cargo.toml index 98191069..18eca531 100644 --- a/typify-impl/Cargo.toml +++ b/typify-impl/Cargo.toml @@ -17,7 +17,7 @@ schemars = "0.8.21" semver = "1.0.23" serde = "1.0.209" serde_json = "1.0.127" -syn = { version = "2.0.75", features = ["full"] } +syn = { version = "2.0.77", features = ["full"] } thiserror = "1.0.63" unicode-ident = "1.0.12" @@ -29,5 +29,5 @@ paste = "1.0.15" rustfmt-wrapper = "0.2.1" schema = "0.1.0" schemars = { version = "0.8.21", features = ["uuid1", "impl_json_schema"] } -syn = { version = "2.0.75", features = ["full", "extra-traits"] } +syn = { version = "2.0.77", features = ["full", "extra-traits"] } uuid = "1.10.0" diff --git a/typify-test/Cargo.toml b/typify-test/Cargo.toml index fdc90559..6ba121b1 100644 --- a/typify-test/Cargo.toml +++ b/typify-test/Cargo.toml @@ -13,5 +13,5 @@ ipnetwork = { version = "0.20.0", features = ["schemars"] } prettyplease = "0.2.20" schemars = "0.8.21" serde = "1.0.209" -syn = "2.0.75" +syn = "2.0.77" typify = { path = "../typify" }