From 4e64142d05a76c000e05a2b375e0297927f8c94b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Mar 2023 10:21:06 +0000 Subject: [PATCH] build(deps): bump rayon from 1.5.3 to 1.7.0 in /ql Bumps [rayon](https://github.com/rayon-rs/rayon) from 1.5.3 to 1.7.0. - [Release notes](https://github.com/rayon-rs/rayon/releases) - [Changelog](https://github.com/rayon-rs/rayon/blob/master/RELEASES.md) - [Commits](https://github.com/rayon-rs/rayon/compare/v1.5.3...rayon-core-v1.7.0) --- updated-dependencies: - dependency-name: rayon dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- ql/Cargo.lock | 10 ++++------ ql/extractor/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/ql/Cargo.lock b/ql/Cargo.lock index d9961c9d94fe..7cbaf089c6ac 100644 --- a/ql/Cargo.lock +++ b/ql/Cargo.lock @@ -316,21 +316,19 @@ dependencies = [ [[package]] name = "rayon" -version = "1.5.3" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd99e5772ead8baa5215278c9b15bf92087709e9c1b2d1f97cdb5a183c933a7d" +checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" dependencies = [ - "autocfg", - "crossbeam-deque", "either", "rayon-core", ] [[package]] name = "rayon-core" -version = "1.9.3" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "258bcdb5ac6dad48491bb2992db6b7cf74878b0384908af124823d118c99683f" +checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" dependencies = [ "crossbeam-channel", "crossbeam-deque", diff --git a/ql/extractor/Cargo.toml b/ql/extractor/Cargo.toml index a3c899609e21..f5d8b3962b0a 100644 --- a/ql/extractor/Cargo.toml +++ b/ql/extractor/Cargo.toml @@ -16,6 +16,6 @@ tree-sitter-ql-yaml = {git = "https://github.com/erik-krogh/tree-sitter-ql.git", clap = "2.33" tracing = "0.1" tracing-subscriber = { version = "0.3.16", features = ["env-filter"] } -rayon = "1.5.0" +rayon = "1.7.0" num_cpus = "1.14.0" regex = "1.7.1"