diff options
| author | Jack O'Connor <[email protected]> | 2020-03-29 23:13:38 -0400 |
|---|---|---|
| committer | Jack O'Connor <[email protected]> | 2020-03-30 00:36:13 -0400 |
| commit | 6fbc1a679d31bb9aaede6685c802da387615876d (patch) | |
| tree | de35b05877310209dc7a43278319ef2daf503fce | |
| parent | 152740578e65ba16e4d008917aad7ea5673dd88f (diff) | |
version 0.3.00.3.0
Changes since version 0.2.3:
- The optimized assembly implementations are now built by default. They
perform better than the intrinsics implementations, and they compile
much more quickly. Bringing the default behavior in line with reported
benchmark figures should also simplify things for people running their
own benchmarks. Previously this crate only built Rust intrinsics
implementations by default, and the assembly implementations were
gated by the (slightly confusingly named) "c" feature. Now the "c"
feature is gone, and applications that need the old behavior can use
the new "pure" feature. Mainly this will be applications that don't
want to require a C compiler. Note that the `b3sum` crate previously
activated the "c" feature by default, so its behavior hasn't changed.
| -rw-r--r-- | Cargo.toml | 2 | ||||
| -rw-r--r-- | b3sum/Cargo.toml | 4 | ||||
| -rw-r--r-- | b3sum/README.md | 2 |
3 files changed, 4 insertions, 4 deletions
@@ -1,6 +1,6 @@ [package] name = "blake3" -version = "0.2.3" +version = "0.3.0" 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 0e12bfb..beca7f4 100644 --- a/b3sum/Cargo.toml +++ b/b3sum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "b3sum" -version = "0.2.3" +version = "0.3.0" authors = ["Jack O'Connor <[email protected]>"] description = "a command line implementation of the BLAKE3 hash function" repository = "https://github.com/BLAKE3-team/BLAKE3" @@ -15,7 +15,7 @@ pure = ["blake3/pure"] [dependencies] anyhow = "1.0.25" -blake3 = { version = "0.2", path = "..", features = ["rayon"] } +blake3 = { version = "0.3", path = "..", features = ["rayon"] } clap = { version = "2.33.0", default-features = false } hex = "0.4.0" memmap = "0.7.0" diff --git a/b3sum/README.md b/b3sum/README.md index d20ec94..ded5595 100644 --- a/b3sum/README.md +++ b/b3sum/README.md @@ -5,7 +5,7 @@ A command line utility for calculating Coreutils tools like `b2sum` or `md5sum`. ``` -b3sum 0.2.3 +b3sum 0.3.0 USAGE: b3sum [FLAGS] [OPTIONS] [file]... |
