Skip to content
Permalink
Browse files
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.
  • Loading branch information
oconnor663-zoom committed Jul 10, 2020
1 parent 2f6f56f commit 7d0de7be14789924a4cfdb0e844eef3540237b2b
Showing with 5 additions and 5 deletions.
  1. +1 −1 Cargo.toml
  2. +1 −1 b3sum/Cargo.toml
  3. +3 −3 b3sum/README.md
@@ -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"
@@ -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"
@@ -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.
```

0 comments on commit 7d0de7b

Please sign in to comment.