From d1a088b16d9e2942b4dc28ba5ec5b3c908bfc589 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 22 Aug 2024 20:27:15 +0000 Subject: [PATCH] Bump rayon from 1.8.0 to 1.10.0 Bumps [rayon](https://github.com/rayon-rs/rayon) from 1.8.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.8.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 | 8 ++++---- bin/tx-decoder/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5da3c6e..6220061 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3732,9 +3732,9 @@ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3" [[package]] name = "rayon" -version = "1.8.0" +version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1" +checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" dependencies = [ "either", "rayon-core", @@ -3742,9 +3742,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/bin/tx-decoder/Cargo.toml b/bin/tx-decoder/Cargo.toml index 3ff00de..3a6dad6 100644 --- a/bin/tx-decoder/Cargo.toml +++ b/bin/tx-decoder/Cargo.toml @@ -27,6 +27,6 @@ argh = "0.1.6" fern = { version = "0.6.0", features = ["colored"] } colored = "2.0.0" indicatif = { version = "0.16.2", features = ["rayon"] } -rayon = "1.5.1" +rayon = "1.10.0" parking_lot = "0.11.2" num_cpus = "1.13.0"