From 58b6f84ddd309b3b1ba3a14ee4daa1c4884bb252 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 9 Jun 2024 22:22:53 +0000 Subject: [PATCH] chore(deps): update rust crates (#56) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [anyhow](https://togithub.com/dtolnay/anyhow) | dependencies | patch | `1.0.82` -> `1.0.86` | | [proc-macro2](https://togithub.com/dtolnay/proc-macro2) | dependencies | patch | `1.0.81` -> `1.0.85` | | [regex](https://togithub.com/rust-lang/regex) | dependencies | patch | `1.10.4` -> `1.10.5` | | [serde_json](https://togithub.com/serde-rs/json) | dependencies | patch | `1.0.116` -> `1.0.117` | | [syn](https://togithub.com/dtolnay/syn) | dependencies | patch | `2.0.60` -> `2.0.66` | | [toml_edit](https://togithub.com/toml-rs/toml) | dependencies | patch | `0.22.12` -> `0.22.14` | --- ### Release Notes
rust-lang/regex (regex) ### [`v1.10.5`](https://togithub.com/rust-lang/regex/blob/HEAD/CHANGELOG.md#1105-2024-06-09) [Compare Source](https://togithub.com/rust-lang/regex/compare/1.10.4...1.10.5) \=================== This is a new patch release with some minor fixes. Bug fixes: - [BUG #​1203](https://togithub.com/rust-lang/regex/pull/1203): Escape invalid UTF-8 when in the `Debug` impl of `regex::bytes::Match`.
toml-rs/toml (toml_edit) ### [`v0.22.14`](https://togithub.com/toml-rs/toml/compare/v0.22.13...v0.22.14) [Compare Source](https://togithub.com/toml-rs/toml/compare/v0.22.13...v0.22.14)
--- ### Configuration 📅 **Schedule**: Branch creation - "before 10am on monday" in timezone Asia/Shanghai, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/Boshen/cargo-shear). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- Cargo.lock | 8 ++++---- Cargo.toml | 12 ++++++------ 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3c6f354..ef70257 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -277,9 +277,9 @@ dependencies = [ [[package]] name = "regex" -version = "1.10.4" +version = "1.10.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c" +checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f" dependencies = [ "aho-corasick", "memchr", @@ -458,9 +458,9 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.22.13" +version = "0.22.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c127785850e8c20836d49732ae6abfa47616e60bf9d9f57c43c250361a9db96c" +checksum = "f21c7aaf97f1bd9ca9d4f9e73b0a6c74bd5afef56f2bc931943a6e1c37e04e38" dependencies = [ "indexmap", "serde", diff --git a/Cargo.toml b/Cargo.toml index f55b52b..ad8a0fe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,18 +37,18 @@ walkdir = "2.5.0" cargo_metadata = "0.18.1" cargo_toml = "0.20.2" bpaf = { version = "0.9.12", features = ["derive", "batteries"] } -proc-macro2 = { version = "1.0.81", features = ["span-locations"] } -syn = { version = "2.0.60", features = [ +proc-macro2 = { version = "1.0.85", features = ["span-locations"] } +syn = { version = "2.0.66", features = [ "full", "visit", "extra-traits", # add "extra-traits" to debug syn ast ] } -regex = "1.10.4" +regex = "1.10.5" rayon = "1.10.0" -toml_edit = { version = "0.22.12", features = ["parse"] } -anyhow = "1.0.82" +toml_edit = { version = "0.22.14", features = ["parse"] } +anyhow = "1.0.86" cargo-util-schemas = "0.3.0" -serde_json = "1.0.116" +serde_json = "1.0.117" [profile.release] # Configurations explicitly listed here for clarity.