aboutsummaryrefslogtreecommitdiff
path: root/b3sum
diff options
context:
space:
mode:
authorJack O'Connor <[email protected]>2024-08-19 10:20:49 -0700
committerJack O'Connor <[email protected]>2024-08-19 10:41:29 -0700
commit95e42b84fc4709974c7b23c7ae885989ab36c31e (patch)
tree325dbd480967ffc50f8b95c48921b180f2884286 /b3sum
parentae4483cbf248f3b4caf9621e6f13f3f878fc7485 (diff)
version 1.5.41.5.4
Changes since 1.5.3: - Initial implementation of SIMD acceleration for the XOF (i.e. blake3::Hasher::finalize_xof). This brings long output performance into line with long input performance. Currently AVX-512-only and Unix-only. - Add build support for "gnullvm" targets (Clang on Windows). - The "zeroize" feature no longer depends on proc-macros and syn.
Diffstat (limited to 'b3sum')
-rw-r--r--b3sum/Cargo.lock4
-rw-r--r--b3sum/Cargo.toml2
2 files changed, 3 insertions, 3 deletions
diff --git a/b3sum/Cargo.lock b/b3sum/Cargo.lock
index 2300573..5cb9cfb 100644
--- a/b3sum/Cargo.lock
+++ b/b3sum/Cargo.lock
@@ -71,7 +71,7 @@ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
[[package]]
name = "b3sum"
-version = "1.5.3"
+version = "1.5.4"
dependencies = [
"anyhow",
"blake3",
@@ -91,7 +91,7 @@ checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
[[package]]
name = "blake3"
-version = "1.5.3"
+version = "1.5.4"
dependencies = [
"arrayref",
"arrayvec",
diff --git a/b3sum/Cargo.toml b/b3sum/Cargo.toml
index 8aa63ee..0671624 100644
--- a/b3sum/Cargo.toml
+++ b/b3sum/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "b3sum"
-version = "1.5.3"
+version = "1.5.4"
authors = ["Jack O'Connor <[email protected]>"]
description = "a command line implementation of the BLAKE3 hash function"
repository = "https://github.com/BLAKE3-team/BLAKE3"