From 0c73340e47c7541ba2c52c7f0012ced5262fe6ff Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Mar 2024 03:31:03 +0000 Subject: [PATCH] Bump regex from 1.10.3 to 1.10.4 in /ql Bumps [regex](https://github.com/rust-lang/regex) from 1.10.3 to 1.10.4. - [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.4) --- 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 557cf673d595..59c3f2c14d93 100644 --- a/ql/Cargo.lock +++ b/ql/Cargo.lock @@ -699,9 +699,9 @@ dependencies = [ [[package]] name = "regex" -version = "1.10.3" +version = "1.10.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15" +checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c" dependencies = [ "aho-corasick 1.0.1", "memchr", diff --git a/ql/buramu/Cargo.toml b/ql/buramu/Cargo.toml index c072903b82a8..1aa57ac412e6 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.35" rayon = "1.9.0" -regex = "1.10.3" +regex = "1.10.4" diff --git a/ql/extractor/Cargo.toml b/ql/extractor/Cargo.toml index bc8de165e65b..1155cc3c6981 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.9.0" -regex = "1.10.3" +regex = "1.10.4" codeql-extractor = { path = "../../shared/tree-sitter-extractor" }