From 33eedcd3bf4cb95d8e0af97f52ea7702a204cfff Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Jun 2024 07:12:15 +0000 Subject: [PATCH] Bump regex from 1.10.3 to 1.10.5 in /ql Bumps [regex](https://github.com/rust-lang/regex) from 1.10.3 to 1.10.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.10.3...1.10.5) --- updated-dependencies: - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- ql/Cargo.lock | 4 ++-- ql/buramu/Cargo.toml | 2 +- ql/extractor/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ql/Cargo.lock b/ql/Cargo.lock index 211cfe14d7a7..cd4f72bfc2be 100644 --- a/ql/Cargo.lock +++ b/ql/Cargo.lock @@ -699,9 +699,9 @@ dependencies = [ [[package]] name = "regex" -version = "1.10.3" +version = "1.10.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15" +checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f" dependencies = [ "aho-corasick 1.0.1", "memchr", diff --git a/ql/buramu/Cargo.toml b/ql/buramu/Cargo.toml index 78a6b0f962f4..94b36d6b38f2 100644 --- a/ql/buramu/Cargo.toml +++ b/ql/buramu/Cargo.toml @@ -9,4 +9,4 @@ edition = "2018" lazy_static = "1.4.0" chrono = "0.4.33" rayon = "1.8.1" -regex = "1.10.3" +regex = "1.10.5" diff --git a/ql/extractor/Cargo.toml b/ql/extractor/Cargo.toml index 301abf60afbf..5699b9346b45 100644 --- a/ql/extractor/Cargo.toml +++ b/ql/extractor/Cargo.toml @@ -16,5 +16,5 @@ clap = { version = "4.2", features = ["derive"] } tracing = "0.1" tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } rayon = "1.8.1" -regex = "1.10.3" +regex = "1.10.5" codeql-extractor = { path = "../../shared/tree-sitter-extractor" }