From 64274c8f3499ada9aa4d86c418032d4839945d5f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Oct 2023 04:30:30 +0000 Subject: [PATCH] deps: bump regex from 1.10.0 to 1.10.1 Bumps [regex](https://github.com/rust-lang/regex) from 1.10.0 to 1.10.1. - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.10.0...1.10.1) --- updated-dependencies: - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 14 +++++++------- cli/Cargo.toml | 2 +- runtime/Cargo.toml | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 87c556b0..902b0a63 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3724,13 +3724,13 @@ dependencies = [ [[package]] name = "regex" -version = "1.10.0" +version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d119d7c7ca818f8a53c300863d4f87566aac09943aef5b355bb83969dae75d87" +checksum = "aaac441002f822bc9705a681810a4dd2963094b9ca0ddc41cb963a4c189189ea" dependencies = [ "aho-corasick 1.0.1", "memchr", - "regex-automata 0.4.1", + "regex-automata 0.4.2", "regex-syntax", ] @@ -3742,9 +3742,9 @@ checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" [[package]] name = "regex-automata" -version = "0.4.1" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "465c6fc0621e4abc4187a2bda0937bfd4f722c2730b29562e19689ea796c9a4b" +checksum = "5011c7e263a695dc8ca064cddb722af1be54e517a280b12a5356f98366899e5d" dependencies = [ "aho-corasick 1.0.1", "memchr", @@ -3753,9 +3753,9 @@ dependencies = [ [[package]] name = "regex-syntax" -version = "0.8.0" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3cbb081b9784b07cceb8824c8583f86db4814d172ab043f3c23f7dc600bf83d" +checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" [[package]] name = "reqwest" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 227eed24..66ca5fc5 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -26,7 +26,7 @@ assert_cmd = { workspace = true } assert_fs = { workspace = true } lazy_static = "1.4.0" pretty_assertions = { workspace = true } -regex = "1.10.0" +regex = "1.10.1" tokio = { workspace = true, features = ["io-util"] } [package.metadata.winres] diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 8c89e5e6..c340a238 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -36,4 +36,4 @@ assert_fs = { workspace = true } console_static_text = "0.8.1" env_logger.workspace = true pretty_assertions = { workspace = true } -regex = "1.10.0" +regex = "1.10.1"