From cd6b1d32d03b52b9c69379a3baf2f0be2f736e53 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 27 Mar 2025 11:37:20 +0200 Subject: [PATCH] Update Rust crate blake3 to v1.7.0 (#27566) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [blake3](https://redirect.github.com/BLAKE3-team/BLAKE3) | workspace.dependencies | minor | `1.6.1` -> `1.7.0` | --- ### Release Notes
BLAKE3-team/BLAKE3 (blake3) ### [`v1.7.0`](https://redirect.github.com/BLAKE3-team/BLAKE3/releases/tag/1.7.0) [Compare Source](https://redirect.github.com/BLAKE3-team/BLAKE3/compare/1.6.1...1.7.0) version 1.7.0 Changes since 1.6.1: - The C implementation has gained multithreading support, based on Intel's oneTBB library. This works similarly to the Rayon-based multithreading used in the Rust implementation. See c/README.md for details. Contributed by [@​silvanshade](https://redirect.github.com/silvanshade) ([#​445](https://redirect.github.com/BLAKE3-team/BLAKE3/issues/445)). - The Rust implementation has gained a WASM SIMD backend, gated by the `wasm32_simd` Cargo feature. Under Wasmtime on my laptop, this is a 6x performance improvement for large inputs. This backend is currently Rust-only. Contributed by [@​monoid](https://redirect.github.com/monoid) ([#​341](https://redirect.github.com/BLAKE3-team/BLAKE3/issues/341)). - Fixed cross-compilation builds targeting Windows with cargo-xwin. Contributed by [@​Sporif](https://redirect.github.com/Sporif) and [@​toothbrush7777777](https://redirect.github.com/toothbrush7777777) ([#​230](https://redirect.github.com/BLAKE3-team/BLAKE3/issues/230)). - Added `b3sum --tag`, which changes the output format. This is for compatibility with GNU checksum tools (which use the same flag) and BSD checksum tools (which use the output format this flag turns on). Contributed by [@​leahneukirchen](https://redirect.github.com/leahneukirchen) ([#​453](https://redirect.github.com/BLAKE3-team/BLAKE3/issues/453)) and [@​dbohdan](https://redirect.github.com/dbohdan) ([#​430](https://redirect.github.com/BLAKE3-team/BLAKE3/issues/430)).
--- ### Configuration 📅 **Schedule**: Branch creation - "after 3pm on Wednesday" in timezone America/New_York, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- Release Notes: - N/A Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 323c3e9d135e483322dd480523122d8d6f9bbdbe..76e122219b20fd0f50a0d570b375bad7754932fd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2041,9 +2041,9 @@ dependencies = [ [[package]] name = "blake3" -version = "1.6.1" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "675f87afced0413c9bb02843499dbbd3882a237645883f71a2b59644a6d2f753" +checksum = "b17679a8d69b6d7fd9cd9801a536cec9fa5e5970b69f9d4747f70b39b031f5e7" dependencies = [ "arrayref", "arrayvec",