diff options
| author | Jack O'Connor <[email protected]> | 2025-02-17 14:46:32 -0800 |
|---|---|---|
| committer | Jack O'Connor <[email protected]> | 2025-02-17 15:17:40 -0800 |
| commit | f8c5f7d023fd77ef7fc6f4596407e510d3468a57 (patch) | |
| tree | 10858842656309db85fe87fd805492d75393733c /b3sum | |
| parent | d4da2150c61944e3e353194335ee885bcc37a8f1 (diff) | |
version 1.6.01.6.0
Changes since 1.5.5:
- Add Hash::from_slice. (#448)
- Fix a build error on Windows 7 targets. (#447)
Diffstat (limited to 'b3sum')
| -rw-r--r-- | b3sum/Cargo.lock | 4 | ||||
| -rw-r--r-- | b3sum/Cargo.toml | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/b3sum/Cargo.lock b/b3sum/Cargo.lock index 10adfc9..bfcb9d2 100644 --- a/b3sum/Cargo.lock +++ b/b3sum/Cargo.lock @@ -72,7 +72,7 @@ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" [[package]] name = "b3sum" -version = "1.5.5" +version = "1.6.0" dependencies = [ "anyhow", "blake3", @@ -92,7 +92,7 @@ checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36" [[package]] name = "blake3" -version = "1.5.5" +version = "1.6.0" dependencies = [ "arrayref", "arrayvec", diff --git a/b3sum/Cargo.toml b/b3sum/Cargo.toml index 81eb25e..e592120 100644 --- a/b3sum/Cargo.toml +++ b/b3sum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "b3sum" -version = "1.5.5" +version = "1.6.0" authors = ["Jack O'Connor <[email protected]>"] description = "a command line implementation of the BLAKE3 hash function" repository = "https://github.com/BLAKE3-team/BLAKE3" @@ -15,7 +15,7 @@ pure = ["blake3/pure"] [dependencies] anyhow = "1.0.25" -blake3 = { version = "1", path = "..", features = ["mmap", "rayon"] } +blake3 = { version = "1.6.0", path = "..", features = ["mmap", "rayon"] } clap = { version = "4.0.8", features = ["derive", "wrap_help"] } hex = "0.4.0" rayon-core = "1.12.1" |
