From bdf26afe5d2901a0946aef4db0a5dce4dea488f4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 2 Jun 2021 06:47:34 -0700 Subject: [PATCH] Bump rayon from 1.5.0 to 1.5.1 in /packer (#2349) 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.0 to 1.5.1.
Changelog

Sourced from rayon's changelog.

Release rayon 1.5.1 / rayon-core 1.9.1 (2021-05-18)

Contributors

Thanks to all of the contributors for this release!

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=rayon&package-manager=cargo&previous-version=1.5.0&new-version=1.5.1)](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/2349 Reviewed By: nikoant Differential Revision: D28830908 Pulled By: passy fbshipit-source-id: 7aeb7e799090e3a0c7f116dcce3db3de52779663 --- 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 d30cbb3e9..286d0a203 100644 --- a/packer/Cargo.lock +++ b/packer/Cargo.lock @@ -473,9 +473,9 @@ checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" [[package]] name = "rayon" -version = "1.5.0" +version = "1.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b0d8e0819fadc20c74ea8373106ead0600e3a67ef1fe8da56e39b9ae7275674" +checksum = "c06aca804d41dbc8ba42dfd964f0d01334eceb64314b9ecf7c5fad5188a06d90" dependencies = [ "autocfg", "crossbeam-deque", @@ -485,9 +485,9 @@ dependencies = [ [[package]] name = "rayon-core" -version = "1.9.0" +version = "1.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ab346ac5921dc62ffa9f89b7a773907511cdfa5490c572ae9be1be33e8afa4a" +checksum = "d78120e2c850279833f1dd3582f730c4ab53ed95aeaaaa862a2a5c71b1656d8e" dependencies = [ "crossbeam-channel", "crossbeam-deque", diff --git a/packer/Cargo.toml b/packer/Cargo.toml index 9d7f48a68..c775b9877 100644 --- a/packer/Cargo.toml +++ b/packer/Cargo.toml @@ -19,7 +19,7 @@ anyhow = "1.0.40" sha2 = "0.9.5" data-encoding = "2.3.2" serde_json = "1.0.64" -rayon = "1.5.0" +rayon = "1.5.1" indicatif = "0.16.2" xz2 = "0.1.6" ignore = "^0.4.17"