1
0
Fork 0
mirror of https://github.com/BLAKE3-team/BLAKE3 synced 2024-05-07 13:56:09 +02:00

version 0.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.
This commit is contained in:
Jack O'Connor 2020-07-10 12:13:46 -04:00
parent 2f6f56f347
commit 7d0de7be14
3 changed files with 5 additions and 5 deletions

View File

@ -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"

View File

@ -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"

View File

@ -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.
```