diff options
| author | Jack O'Connor <[email protected]> | 2020-01-17 13:39:59 -0500 |
|---|---|---|
| committer | Jack O'Connor <[email protected]> | 2020-01-17 13:58:55 -0500 |
| commit | 14cd5c51c4bae0ae5dbd9e79b33b611339b64689 (patch) | |
| tree | daebd7faf879a33018b67758eacfb15b17935ae9 | |
| parent | 7ee89fe7387682c404877f6799423dec65187a05 (diff) | |
version 0.1.20.1.2
Changes since 0.1.1:
- b3sum no longer mmaps files smaller than 16 KiB. This improves
performance for hashing many small files. Contributed by @xzfc.
- b3sum now supports --raw output. Contributed by @phayes.
| -rw-r--r-- | Cargo.toml | 2 | ||||
| -rw-r--r-- | b3sum/Cargo.toml | 2 | ||||
| -rw-r--r-- | b3sum/README.md | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -1,6 +1,6 @@ [package] name = "blake3" -version = "0.1.1" +version = "0.1.2" authors = ["Jack O'Connor <[email protected]>"] description = "the BLAKE3 hash function" repository = "https://github.com/BLAKE3-team/BLAKE3" diff --git a/b3sum/Cargo.toml b/b3sum/Cargo.toml index 5985b0c..1c590e1 100644 --- a/b3sum/Cargo.toml +++ b/b3sum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "b3sum" -version = "0.1.1" +version = "0.1.2" authors = ["Jack O'Connor <[email protected]>"] 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 927a8b5..aff4bcd 100644 --- a/b3sum/README.md +++ b/b3sum/README.md @@ -1,7 +1,7 @@ # b3sum ``` -b3sum 0.1.1 +b3sum 0.1.2 USAGE: b3sum [FLAGS] [OPTIONS] [file]... |
