From 8b6924559af0e0719d78bfc18c9c6a33ab358299 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 24 Nov 2022 09:23:32 -0800 Subject: [PATCH] Bump rayon from 1.5.2 to 1.6.0 in /packer (#4322) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Summary: Bumps [rayon](https://github.com/rayon-rs/rayon) from 1.5.2 to 1.6.0.
Changelog

Sourced from rayon's changelog.

Release rayon 1.6.0 / rayon-core 1.10.0 (2022-11-18)

Contributors

Thanks to all of the contributors for this release!

Release rayon 1.5.3 (2022-05-13)

Release rayon-core 1.9.3 (2022-05-13)

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=rayon&package-manager=cargo&previous-version=1.5.2&new-version=1.6.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/4322 Reviewed By: antonk52 Differential Revision: D41472340 Pulled By: passy fbshipit-source-id: 73924e9502283654444533f98d68d3edcc9d1c01 --- packer/Cargo.lock | 9 ++++----- packer/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/packer/Cargo.lock b/packer/Cargo.lock index f05526730..d2f6e503d 100644 --- a/packer/Cargo.lock +++ b/packer/Cargo.lock @@ -532,11 +532,10 @@ checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" [[package]] name = "rayon" -version = "1.5.2" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd249e82c21598a9a426a4e00dd7adc1d640b22445ec8545feef801d1a74c221" +checksum = "1e060280438193c554f654141c9ea9417886713b7acd75974c85b18a69a88e0b" dependencies = [ - "autocfg", "crossbeam-deque", "either", "rayon-core", @@ -544,9 +543,9 @@ dependencies = [ [[package]] name = "rayon-core" -version = "1.9.2" +version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f51245e1e62e1f1629cbfec37b5793bbabcaeb90f30e94d2ba03564687353e4" +checksum = "cac410af5d00ab6884528b4ab69d1e8e146e8d471201800fa1b4524126de6ad3" dependencies = [ "crossbeam-channel", "crossbeam-deque", diff --git a/packer/Cargo.toml b/packer/Cargo.toml index 52c49fc14..abc62df8d 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.5" +rayon = "^1.6" indicatif = "^0.16" xz2 = "0.1.7" ignore = "0.4.18"