From d8bd4721ef9a071d4c67fcde5cad860973c8895a Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Tue, 25 Aug 2020 22:11:04 +0000 Subject: [PATCH] Bump rayon-core from 1.7.1 to 1.8.0 Bumps [rayon-core](https://github.com/rayon-rs/rayon) from 1.7.1 to 1.8.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/rayon-core-v1.7.1...rayon-core-v1.8.0) Signed-off-by: dependabot-preview[bot] --- Cargo.lock | 17 +++-------------- Cargo.toml | 2 +- asyncgit/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7c12f35e..7fa025c9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -293,17 +293,6 @@ dependencies = [ "scopeguard", ] -[[package]] -name = "crossbeam-queue" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "774ba60a54c213d409d5353bda12d49cd68d14e45036a285234c8d6f91f92570" -dependencies = [ - "cfg-if", - "crossbeam-utils", - "maybe-uninit", -] - [[package]] name = "crossbeam-utils" version = "0.7.2" @@ -957,12 +946,12 @@ dependencies = [ [[package]] name = "rayon-core" -version = "1.7.1" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e92e15d89083484e11353891f1af602cc661426deb9564c298b270c726973280" +checksum = "91739a34c4355b5434ce54c9086c5895604a9c278586d1f1aa95e04f66b525a0" dependencies = [ + "crossbeam-channel", "crossbeam-deque", - "crossbeam-queue", "crossbeam-utils", "lazy_static", "num_cpus", diff --git a/Cargo.toml b/Cargo.toml index 6cf38025..790afae8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,7 +26,7 @@ clap = { version = "2.33", default-features = false } tui = { version = "0.9", default-features = false, features = ['crossterm'] } bytesize = { version = "1.0.1", default-features = false} itertools = "0.9" -rayon-core = "1.7" +rayon-core = "1.8" log = "0.4" simplelog = { version = "0.8", default-features = false } dirs = "3.0" diff --git a/asyncgit/Cargo.toml b/asyncgit/Cargo.toml index d7569e7c..7a1e6f1a 100644 --- a/asyncgit/Cargo.toml +++ b/asyncgit/Cargo.toml @@ -14,7 +14,7 @@ keywords = ["git"] [dependencies] scopetime = { path = "../scopetime", version = "0.1" } git2 = { version = "0.13.10", default-features = false } -rayon-core = "1.7" +rayon-core = "1.8" crossbeam-channel = "0.4" log = "0.4" thiserror = "1.0"