From cef1f4ae75e509c4d83980a9db6dcee577bb7014 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 9 Mar 2023 06:41:52 -0800 Subject: [PATCH] Bump rayon from 1.6.1 to 1.7.0 in /packer (#4571) Summary: Bumps [rayon](https://github.com/rayon-rs/rayon) from 1.6.1 to 1.7.0.
Changelog

Sourced from rayon's changelog.

Release rayon 1.7.0 / rayon-core 1.11.0 (2023-03-03)

Release rayon-core 1.10.2 (2023-01-22)

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=rayon&package-manager=cargo&previous-version=1.6.1&new-version=1.7.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `dependabot rebase` will rebase this PR - `dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `dependabot merge` will merge this PR after your CI passes on it - `dependabot squash and merge` will squash and merge this PR after your CI passes on it - `dependabot cancel merge` will cancel a previously requested merge and block automerging - `dependabot reopen` will reopen this PR if it is closed - `dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Pull Request resolved: https://github.com/facebook/flipper/pull/4571 Reviewed By: lblasa Differential Revision: D43904929 Pulled By: passy fbshipit-source-id: 7e8fdb590b30c89a6f144a936a28b118633fb688 --- packer/Cargo.lock | 8 ++++---- packer/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packer/Cargo.lock b/packer/Cargo.lock index b5f37289e..1ec785bec 100644 --- a/packer/Cargo.lock +++ b/packer/Cargo.lock @@ -532,9 +532,9 @@ checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" [[package]] name = "rayon" -version = "1.6.1" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6db3a213adf02b3bcfd2d3846bb41cb22857d131789e01df434fb7e7bc0759b7" +checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" dependencies = [ "either", "rayon-core", @@ -542,9 +542,9 @@ dependencies = [ [[package]] name = "rayon-core" -version = "1.10.1" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cac410af5d00ab6884528b4ab69d1e8e146e8d471201800fa1b4524126de6ad3" +checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" dependencies = [ "crossbeam-channel", "crossbeam-deque", diff --git a/packer/Cargo.toml b/packer/Cargo.toml index 83a7c1c06..239318171 100644 --- a/packer/Cargo.toml +++ b/packer/Cargo.toml @@ -19,7 +19,7 @@ anyhow = "^1" sha2 = "0.10.6" data-encoding = "^2" serde_json = "^1" -rayon = "^1.6" +rayon = "^1.7" indicatif = "^0.16" xz2 = "0.1.7" ignore = "0.4.20"