aboutsummaryrefslogtreecommitdiff
path: root/b3sum
diff options
context:
space:
mode:
authorJack O'Connor <[email protected]>2026-01-08 08:55:54 -0800
committerJack O'Connor <[email protected]>2026-01-08 09:17:29 -0800
commit8b829b697fa4cfe35de35e9aa8c20b56266cb091 (patch)
tree3f0672917dbef2226d93cceff6ad221377519c48 /b3sum
parent7d6e242636a9cecb5ba9a5bcfee189ca734b0350 (diff)
version 1.8.3HEAD1.8.3master
Changes since 1.8.2: - Add `Hash::as_slice`. - Update to the 2024 Edition and bump the MSRV to 1.85. - Fix a set of Miri failures in the intrinsics implementations. We were computing (though not dereferencing) an out-of-bounds pointer using `add` rather than `wrapping_add`. I'm not aware of any observable consequences of this bug. See https://github.com/BLAKE3-team/BLAKE3/pull/507. - CPU feature detection on x86/x86-64 no longer requires the `std` Cargo feature in the `blake3` crate. - Build fixes in the C implementation for macOS and Cygwin, and various improvements to the CMake build.
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 eb1da0e..a6d4b5c 100644
--- a/b3sum/Cargo.lock
+++ b/b3sum/Cargo.lock
@@ -72,7 +72,7 @@ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
[[package]]
name = "b3sum"
-version = "1.8.2"
+version = "1.8.3"
dependencies = [
"anyhow",
"blake3",
@@ -92,7 +92,7 @@ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
[[package]]
name = "blake3"
-version = "1.8.2"
+version = "1.8.3"
dependencies = [
"arrayref",
"arrayvec",
diff --git a/b3sum/Cargo.toml b/b3sum/Cargo.toml
index 52f8d03..cd98c69 100644
--- a/b3sum/Cargo.toml
+++ b/b3sum/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "b3sum"
-version = "1.8.2"
+version = "1.8.3"
authors = ["Jack O'Connor <[email protected]>"]
description = "a command line implementation of the BLAKE3 hash function"
repository = "https://github.com/BLAKE3-team/BLAKE3"