diff --git a/Cargo.lock b/Cargo.lock index ee1b3d35899..6df28876c46 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2082,13 +2082,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 0.8.2", ] @@ -2103,9 +2103,9 @@ dependencies = [ [[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/integration-tests/Cargo.toml b/integration-tests/Cargo.toml index 6cf5b16c147..af90dcf0fcc 100644 --- a/integration-tests/Cargo.toml +++ b/integration-tests/Cargo.toml @@ -24,6 +24,6 @@ cfg-if = "1.0.0" pathdiff = { version = "0.2.1", features = ["camino"] } nextest-metadata = { version = "=0.9.2", path = "../nextest-metadata" } once_cell = "1.18.0" -regex = "1.10.1" +regex = "1.10.2" serde_json = "1.0.107" insta = { version = "1.34.0", default-features = false } diff --git a/nextest-filtering/Cargo.toml b/nextest-filtering/Cargo.toml index 000c88c57eb..fa4c4ce2cef 100644 --- a/nextest-filtering/Cargo.toml +++ b/nextest-filtering/Cargo.toml @@ -32,7 +32,7 @@ nom = "7.1.3" nom-tracable = "0.9.0" nom_locate = "4.2.0" recursion = "0.5.1" -regex = "1.10.1" +regex = "1.10.2" regex-syntax = "0.8.2" thiserror = "1.0.49" nextest-workspace-hack = { version = "0.1", path = "../workspace-hack" } diff --git a/nextest-runner/Cargo.toml b/nextest-runner/Cargo.toml index 179217e1c3c..511b90c9085 100644 --- a/nextest-runner/Cargo.toml +++ b/nextest-runner/Cargo.toml @@ -45,7 +45,7 @@ miette = "5.10.0" once_cell = "1.18.0" owo-colors = "3.5.0" pin-project-lite = "0.2.13" -regex = "1.10.1" +regex = "1.10.2" semver = "1.0.20" serde = { version = "1.0.189", features = ["derive"] } serde_ignored = "0.1.9"