From 0068a470f0bc7dfe0c95344605f01193a730d3bb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Sep 2023 23:22:44 +0000 Subject: [PATCH] Bump regex from 1.9.3 to 1.9.5 (#3255) Bumps [regex](https://github.com/rust-lang/regex) from 1.9.3 to 1.9.5. - [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.9.3...1.9.5) --- updated-dependencies: - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 22 +++++++++++----------- boa_cli/Cargo.toml | 2 +- boa_tester/Cargo.toml | 2 +- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e433372748..eea18b793a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2548,9 +2548,9 @@ dependencies = [ [[package]] name = "memchr" -version = "2.5.0" +version = "2.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" +checksum = "8f232d6ef707e1956a43342693d2a31e72989554d58299d7a88738cc95b0d35c" [[package]] name = "memmap2" @@ -3238,14 +3238,14 @@ dependencies = [ [[package]] name = "regex" -version = "1.9.3" +version = "1.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81bc1d4caf89fac26a70747fe603c130093b53c773888797a6329091246d651a" +checksum = "697061221ea1b4a94a624f67d0ae2bfe4e22b8a17b6a192afb11046542cc8c47" dependencies = [ "aho-corasick", "memchr", - "regex-automata 0.3.6", - "regex-syntax 0.7.4", + "regex-automata 0.3.8", + "regex-syntax 0.7.5", ] [[package]] @@ -3260,13 +3260,13 @@ dependencies = [ [[package]] name = "regex-automata" -version = "0.3.6" +version = "0.3.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fed1ceff11a1dddaee50c9dc8e4938bd106e9d89ae372f192311e7da498e3b69" +checksum = "c2f401f4955220693b56f8ec66ee9c78abffd8d1c4f23dc41a23839eb88f0795" dependencies = [ "aho-corasick", "memchr", - "regex-syntax 0.7.4", + "regex-syntax 0.7.5", ] [[package]] @@ -3277,9 +3277,9 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" [[package]] name = "regex-syntax" -version = "0.7.4" +version = "0.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2" +checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da" [[package]] name = "region" diff --git a/boa_cli/Cargo.toml b/boa_cli/Cargo.toml index 5f49480044..439e8183df 100644 --- a/boa_cli/Cargo.toml +++ b/boa_cli/Cargo.toml @@ -22,7 +22,7 @@ rustyline = { version = "12.0.0", features = ["derive"]} clap = { version = "4.4.2", features = ["derive"] } serde_json = "1.0.105" colored = "2.0.4" -regex = "1.9.3" +regex = "1.9.5" phf = { version = "0.11.2", features = ["macros"] } pollster = "0.3.0" diff --git a/boa_tester/Cargo.toml b/boa_tester/Cargo.toml index fab0cd7838..a934046acc 100644 --- a/boa_tester/Cargo.toml +++ b/boa_tester/Cargo.toml @@ -19,7 +19,7 @@ serde = { version = "1.0.188", features = ["derive"] } serde_yaml = "0.9.25" serde_json = "1.0.105" bitflags = "2.4.0" -regex = "1.9.3" +regex = "1.9.5" once_cell = "1.18.0" colored = "2.0.4" fxhash = "0.2.1"