From 404f984a04c1737b877a627affab0c8493782444 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 21 Sep 2023 04:37:06 +0000 Subject: [PATCH] Bump rayon from 1.7.0 to 1.8.0 Bumps [rayon](https://github.com/rayon-rs/rayon) from 1.7.0 to 1.8.0. - [Changelog](https://github.com/rayon-rs/rayon/blob/master/RELEASES.md) - [Commits](https://github.com/rayon-rs/rayon/compare/rayon-core-v1.7.0...rayon-core-v1.8.0) --- updated-dependencies: - dependency-name: rayon dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 30 ++++-------------------------- splashsurf/Cargo.toml | 2 +- splashsurf_lib/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 28 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cd452f9..264a7f5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -390,16 +390,6 @@ version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7059fff8937831a9ae6f0fe4d658ffabf58f2ca96aa9dec1c889f936f705f216" -[[package]] -name = "crossbeam-channel" -version = "0.5.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" -dependencies = [ - "cfg-if", - "crossbeam-utils", -] - [[package]] name = "crossbeam-deque" version = "0.8.3" @@ -895,16 +885,6 @@ dependencies = [ "libm", ] -[[package]] -name = "num_cpus" -version = "1.16.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" -dependencies = [ - "hermit-abi", - "libc", -] - [[package]] name = "number_prefix" version = "0.4.0" @@ -1134,9 +1114,9 @@ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3" [[package]] name = "rayon" -version = "1.7.0" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" +checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1" dependencies = [ "either", "rayon-core", @@ -1144,14 +1124,12 @@ dependencies = [ [[package]] name = "rayon-core" -version = "1.11.0" +version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" +checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed" dependencies = [ - "crossbeam-channel", "crossbeam-deque", "crossbeam-utils", - "num_cpus", ] [[package]] diff --git a/splashsurf/Cargo.toml b/splashsurf/Cargo.toml index c6ef510..6185ba5 100644 --- a/splashsurf/Cargo.toml +++ b/splashsurf/Cargo.toml @@ -19,7 +19,7 @@ log = "0.4" fern = "0.6" chrono = "0.4.20" anyhow = "1.0" -rayon = "1.7" +rayon = "1.8" bytemuck = "1.9" regex = "1" walkdir = "2" diff --git a/splashsurf_lib/Cargo.toml b/splashsurf_lib/Cargo.toml index 5a6ba83..a8a54e0 100644 --- a/splashsurf_lib/Cargo.toml +++ b/splashsurf_lib/Cargo.toml @@ -45,7 +45,7 @@ thiserror = "1.0" itertools = "0.11" parking_lot = "0.12" thread_local = "1.1.4" -rayon = "1.7" +rayon = "1.8" dashmap = "5.2.0" fxhash = "0.2" bitflags = "2.4"