summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack O'Connor <jack.oconnor@zoom.us>2020-07-10 12:13:46 -0400
committerJack O'Connor <jack.oconnor@zoom.us>2020-07-10 12:21:12 -0400
commit7d0de7be14789924a4cfdb0e844eef3540237b2b (patch)
tree428460877c6e488de641116d71df0aa7db143030
parent2f6f56f3477321c9e4742f1c863e45f2cfcbfb5e (diff)
version 0.3.50.3.5
Changes since 0.3.4: - The `digest` dependency is now v0.9 and the `crypto-mac` dependency is now v0.8. - Intel CET is supported in the assembly implementations. - `b3sum` error output includes filepaths again.
-rw-r--r--Cargo.toml2
-rw-r--r--b3sum/Cargo.toml2
-rw-r--r--b3sum/README.md6
3 files changed, 5 insertions, 5 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 720e9a4..ac98f62 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "blake3"
-version = "0.3.4"
+version = "0.3.5"
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 56ed381..53cffa4 100644
--- a/b3sum/Cargo.toml
+++ b/b3sum/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "b3sum"
-version = "0.3.4"
+version = "0.3.5"
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 7bf8f90..29aa120 100644
--- a/b3sum/README.md
+++ b/b3sum/README.md
@@ -5,10 +5,10 @@ A command line utility for calculating
Coreutils tools like `b2sum` or `md5sum`.
```
-b3sum 0.3.4
+b3sum 0.3.5
USAGE:
- b3sum [FLAGS] [OPTIONS] [file]...
+ b3sum [FLAGS] [OPTIONS] [FILE]...
FLAGS:
-c, --check Reads BLAKE3 sums from the [file]s and checks them
@@ -36,7 +36,7 @@ OPTIONS:
RAYON_NUM_THREADS is also respected.
ARGS:
- <file>... Files to hash, or checkfiles to check. When no file is given,
+ <FILE>... Files to hash, or checkfiles to check. When no file is given,
or when - is given, read standard input.
```