summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack O'Connor <oconnor663@gmail.com>2020-01-22 21:35:24 -0500
committerJack O'Connor <oconnor663@gmail.com>2020-01-22 21:35:24 -0500
commite17c45ddd54bb80fe8a3a2ea384ba87e7ce1dff1 (patch)
tree534b6764d34a6df429da6a7d9eb8e271b076745e
parent163f52245d3f6cfcc2ec2c91e01412ffba5f6d45 (diff)
version 0.1.30.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.
-rw-r--r--Cargo.toml2
-rw-r--r--b3sum/Cargo.toml2
-rw-r--r--b3sum/README.md3
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 <oconnor663@gmail.com>"]
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 <oconnor663@gmail.com>"]
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