From 81d9494097aa70f3d7dc6c4a1ad6ec741329e78b Mon Sep 17 00:00:00 2001 From: Calciumdibromid Bot Date: Tue, 11 Apr 2023 12:05:24 +0000 Subject: [PATCH] Update Rust crate regex to 1.7.3 (#1827) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [regex](https://github.com/rust-lang/regex) | dependencies | patch | `1.7.1` -> `1.7.3` | --- ### Release Notes
rust-lang/regex ### [`v1.7.3`](https://github.com/rust-lang/regex/blob/HEAD/CHANGELOG.md#​173-2023-03-24) [Compare Source](https://github.com/rust-lang/regex/compare/1.7.2...1.7.3) \================== This is a small release that fixes a bug in `Regex::shortest_match_at` that could cause it to panic, even when the offset given is valid. Bug fixes: - [BUG #​969](https://github.com/rust-lang/regex/issues/969): Fix a bug in how the reverse DFA was called for `Regex::shortest_match_at`. ### [`v1.7.2`](https://github.com/rust-lang/regex/blob/HEAD/CHANGELOG.md#​172-2023-03-21) [Compare Source](https://github.com/rust-lang/regex/compare/1.7.1...1.7.2) \================== This is a small release that fixes a failing test on FreeBSD. Bug fixes: - [BUG #​967](https://github.com/rust-lang/regex/issues/967): Fix "no stack overflow" test which can fail due to the small stack size.
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). Co-authored-by: cabr2-bot Reviewed-on: https://codeberg.org/Calciumdibromid/CaBr2/pulls/1827 Reviewed-by: crapStone Co-authored-by: Calciumdibromid Bot Co-committed-by: Calciumdibromid Bot --- crates/load_save/Cargo.toml | 2 +- crates/search/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/load_save/Cargo.toml b/crates/load_save/Cargo.toml index d6f019af..dc69c235 100644 --- a/crates/load_save/Cargo.toml +++ b/crates/load_save/Cargo.toml @@ -17,7 +17,7 @@ lazy_static = "1.4.0" log = "0.4.17" lopdf = { version = "0.30.0", optional = true } quick-xml = { version = "0.28.1", features = ["serialize"], optional = true } -regex = { version = "1.7.1", optional = true } +regex = { version = "1.7.3", optional = true } serde = { version = "1.0.160", features = ["derive"] } serde_json = { version = "1.0.95", optional = true } thiserror = "1.0.40" diff --git a/crates/search/Cargo.toml b/crates/search/Cargo.toml index 01869006..6ac81f94 100644 --- a/crates/search/Cargo.toml +++ b/crates/search/Cargo.toml @@ -18,7 +18,7 @@ futures = { version = "0.3.28", optional = true } lazy_static = "1.4.0" log = "0.4.17" quick-xml = { version = "0.28.1", optional = true, features = ["serialize"] } -regex = { version = "1.7.1", optional = true } +regex = { version = "1.7.3", optional = true } reqwest = { version = "0.11.16", features = ["deflate", "gzip", "json", "native-tls"], default-features = false, optional = true } serde = { version = "1.0.160", features = ["derive"] } serde_json = "1.0.95"