From c66384a4fa38ecdce6faf7c43df6a02e35717148 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Mar 2024 18:11:33 +0000 Subject: [PATCH] Bump rayon from 1.9.0 to 1.10.0 Bumps [rayon](https://github.com/rayon-rs/rayon) from 1.9.0 to 1.10.0. - [Changelog](https://github.com/rayon-rs/rayon/blob/main/RELEASES.md) - [Commits](https://github.com/rayon-rs/rayon/compare/rayon-core-v1.9.0...rayon-core-v1.10.0) --- updated-dependencies: - dependency-name: rayon dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- ndstruct-fuzz/Cargo.toml | 2 +- ndstruct/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c82ec74..40e061e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -196,9 +196,9 @@ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" [[package]] name = "rayon" -version = "1.9.0" +version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e4963ed1bc86e4f3ee217022bd855b297cef07fb9eac5dfa1f788b220b49b3bd" +checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" dependencies = [ "either", "rayon-core", diff --git a/ndstruct-fuzz/Cargo.toml b/ndstruct-fuzz/Cargo.toml index 0474c2e..99c15cc 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.9" } +rayon = { default-features = false, version = "1.10" } [package] authors = ["Automatically generated"] diff --git a/ndstruct/Cargo.toml b/ndstruct/Cargo.toml index e85e923..56b0dda 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.9" } +rayon = { default-features = false, optional = true, version = "1.10" } serde = { default-features = false, features = ["derive"], optional = true, version = "1.0" } [features]