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

version 0.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.
This commit is contained in:
Jack O'Connor 2020-03-29 23:13:38 -04:00
parent 152740578e
commit 6fbc1a679d
3 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "blake3"
version = "0.2.3"
version = "0.3.0"
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.2.3"
version = "0.3.0"
authors = ["Jack O'Connor <oconnor663@gmail.com>"]
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"

View File

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