From 0301cd110dc0eb8a285575714637d09af713b48a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 18:12:54 +0000 Subject: [PATCH] Bump rayon from 1.8.0 to 1.8.1 Bumps [rayon](https://github.com/rayon-rs/rayon) from 1.8.0 to 1.8.1. - [Changelog](https://github.com/rayon-rs/rayon/blob/master/RELEASES.md) - [Commits](https://github.com/rayon-rs/rayon/compare/rayon-core-v1.8.0...rayon-core-v1.8.1) --- updated-dependencies: - dependency-name: rayon dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> --- Cargo.lock | 8 ++++---- ndstruct-fuzz/Cargo.toml | 2 +- ndstruct/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 87bd9ab..7c9659d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -196,9 +196,9 @@ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" [[package]] name = "rayon" -version = "1.8.0" +version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1" +checksum = "fa7237101a77a10773db45d62004a272517633fbcc3df19d96455ede1122e051" dependencies = [ "either", "rayon-core", @@ -206,9 +206,9 @@ dependencies = [ [[package]] name = "rayon-core" -version = "1.12.0" +version = "1.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed" +checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" dependencies = [ "crossbeam-deque", "crossbeam-utils", diff --git a/ndstruct-fuzz/Cargo.toml b/ndstruct-fuzz/Cargo.toml index c78c36c..2f9b975 100644 --- a/ndstruct-fuzz/Cargo.toml +++ b/ndstruct-fuzz/Cargo.toml @@ -23,7 +23,7 @@ arbitrary = { default-features = false, features = ["derive"], version = "1.3" } libfuzzer-sys = { default-features = false, version = "0.4" } ndstruct = { default-features = false, features = ["alloc", "rand", "rayon"], path = "../ndstruct" } rand = { default-features = false, version = "0.8" } -rayon = { default-features = false, version = "1.0" } +rayon = { default-features = false, version = "1.8" } [package] authors = ["Automatically generated"] diff --git a/ndstruct/Cargo.toml b/ndstruct/Cargo.toml index 9bd7953..d32c737 100644 --- a/ndstruct/Cargo.toml +++ b/ndstruct/Cargo.toml @@ -1,7 +1,7 @@ [dependencies] cl-aux = { default-features = false, features = ["serde"], path = "../cl-aux", version = "4.0" } rand = { default-features = false, optional = true, version = "0.8" } -rayon = { default-features = false, optional = true, version = "1.0" } +rayon = { default-features = false, optional = true, version = "1.8" } serde = { default-features = false, features = ["derive"], optional = true, version = "1.0" } [features]