From e17c45ddd54bb80fe8a3a2ea384ba87e7ce1dff1 Mon Sep 17 00:00:00 2001 From: Jack O'Connor Date: Wed, 22 Jan 2020 21:35:24 -0500 Subject: version 0.1.3 Changes since 0.1.2: - All x86 implementations include _mm_prefetch optimizations. These improve performance for very large inputs. - The C implementation performs parallel parent hashing, matching the performance of the single-threaded Rust implementation. - b3sum supports --no-mmap. Contributed by @cesarb. --- Cargo.toml | 2 +- b3sum/Cargo.toml | 2 +- b3sum/README.md | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6ecd4df..f532d73 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "blake3" -version = "0.1.2" +version = "0.1.3" authors = ["Jack O'Connor "] description = "the BLAKE3 hash function" repository = "https://github.com/BLAKE3-team/BLAKE3" diff --git a/b3sum/Cargo.toml b/b3sum/Cargo.toml index 1c590e1..8a1df06 100644 --- a/b3sum/Cargo.toml +++ b/b3sum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "b3sum" -version = "0.1.2" +version = "0.1.3" authors = ["Jack O'Connor "] description = "a command line implementation of the BLAKE3 hash function" repository = "https://github.com/BLAKE3-team/BLAKE3" diff --git a/b3sum/README.md b/b3sum/README.md index aff4bcd..b2d7c68 100644 --- a/b3sum/README.md +++ b/b3sum/README.md @@ -1,7 +1,7 @@ # b3sum ``` -b3sum 0.1.2 +b3sum 0.1.3 USAGE: b3sum [FLAGS] [OPTIONS] [file]... @@ -9,6 +9,7 @@ USAGE: FLAGS: -h, --help Prints help information --keyed Uses the keyed mode, with the raw 32-byte key read from stdin + --no-mmap Disables memory mapping --no-names Omits filenames in the output --raw Writes raw output bytes to stdout, rather than hex. --no-names is implied. In this case, only a single input is allowed -- cgit v1.2.3