summaryrefslogtreecommitdiff
path: root/b3sum
diff options
context:
space:
mode:
authorJack O'Connor <oconnor663@gmail.com>2024-07-12 09:50:13 -0700
committerJack O'Connor <oconnor663@gmail.com>2024-07-12 09:50:13 -0700
commit27cbd6bdd5a8e9c3cf7f3e8f682056d297a8ba36 (patch)
treed425a4cc2a3336faab4864c33d3d580e7fc7ec42 /b3sum
parent0c456b7f49a133462f9fe7094be0b43a70cd3fc4 (diff)
version 1.5.21.5.2
Changes since 1.5.1: - `build.rs` sets `cc::Build::emit_rerun_if_env_changed(false)` to prevent some unnecessary rebuilds, particularly when the `PATH` changes on Windows. See #324. - Serializing a `Hash` produces a bytestring instead of an array in formats that support bytestrings (like CBOR). Deserialization is backwards-compatible with the array format. - Cleanup and edge case fixes in the C and CMake builds.
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 9f1ca42..2ee0e94 100644
--- a/b3sum/Cargo.lock
+++ b/b3sum/Cargo.lock
@@ -71,7 +71,7 @@ checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
[[package]]
name = "b3sum"
-version = "1.5.1"
+version = "1.5.2"
dependencies = [
"anyhow",
"blake3",
@@ -91,7 +91,7 @@ checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
[[package]]
name = "blake3"
-version = "1.5.1"
+version = "1.5.2"
dependencies = [
"arrayref",
"arrayvec",
diff --git a/b3sum/Cargo.toml b/b3sum/Cargo.toml
index 3b47beb..5b77425 100644
--- a/b3sum/Cargo.toml
+++ b/b3sum/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "b3sum"
-version = "1.5.1"
+version = "1.5.2"
authors = ["Jack O'Connor <oconnor663@gmail.com>"]
description = "a command line implementation of the BLAKE3 hash function"
repository = "https://github.com/BLAKE3-team/BLAKE3"