From 8b9fee1fb35632cdefe4574a4808c7f29bd8909c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 17 Oct 2023 09:50:21 +0200 Subject: [PATCH] build(deps): update rust crate regex to 1.10.2 (#5501) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- Cargo.lock | 10 +++++----- Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1630d949..16d6ca9e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2401,13 +2401,13 @@ dependencies = [ [[package]] name = "regex" -version = "1.10.1" +version = "1.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aaac441002f822bc9705a681810a4dd2963094b9ca0ddc41cb963a4c189189ea" +checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343" dependencies = [ "aho-corasick", "memchr", - "regex-automata 0.4.2", + "regex-automata 0.4.3", "regex-syntax", ] @@ -2419,9 +2419,9 @@ checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" [[package]] name = "regex-automata" -version = "0.4.2" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5011c7e263a695dc8ca064cddb722af1be54e517a280b12a5356f98366899e5d" +checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f" dependencies = [ "aho-corasick", "memchr", diff --git a/Cargo.toml b/Cargo.toml index d918d4b8..369fb7fd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -67,7 +67,7 @@ pest_derive = "2.7.4" quick-xml = "0.30.0" rand = "0.8.5" rayon = "1.8.0" -regex = { version = "1.10.1", default-features = false, features = ["perf", "std", "unicode-perl"] } +regex = { version = "1.10.2", default-features = false, features = ["perf", "std", "unicode-perl"] } rust-ini = "0.19.0" semver = "1.0.20" serde = { version = "1.0.189", features = ["derive"] }