diff options
| author | Jack O'Connor <[email protected]> | 2025-03-18 10:45:35 -0700 |
|---|---|---|
| committer | Jack O'Connor <[email protected]> | 2025-03-18 11:09:40 -0700 |
| commit | a9e92981a5c15db7f6c3a040ffc764b7a49eb4d4 (patch) | |
| tree | 953f13affb2f694335fc9eaceffed8e53cde7cb6 /b3sum/Cargo.toml | |
| parent | cc710a082a5e11bd83d94dc64aaf1e8b97330d7a (diff) | |
version 1.7.01.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 (#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 (#341).
- Fixed cross-compilation builds targeting Windows with cargo-xwin.
Contributed by @Sporif and @toothbrush7777777 (#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 (#453) and @dbohdan (#430).
Diffstat (limited to 'b3sum/Cargo.toml')
| -rw-r--r-- | b3sum/Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/b3sum/Cargo.toml b/b3sum/Cargo.toml index 55ecc07..5816ac9 100644 --- a/b3sum/Cargo.toml +++ b/b3sum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "b3sum" -version = "1.6.1" +version = "1.7.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.6.1", path = "..", features = ["mmap", "rayon"] } +blake3 = { version = "1.7.0", path = "..", features = ["mmap", "rayon"] } clap = { version = "4.0.8", features = ["derive", "wrap_help"] } hex = "0.4.0" rayon-core = "1.12.1" |
