• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

blake3パッケージ


Commit MetaInfo

Revision7f154ceea33c4c8dcc3719836c89b9a79d39319c (tree)
Zeit2020-05-24 03:37:49
AutorJack O'Connor <oconnor663@gmai...>
CommiterJack O'Connor

Log Message

version 0.3.4

Changes since 0.3.3:
- b3sum now supports the --check flag. This is intended to be a

drop-in replacement for e.g. md5sum --check from Coreutils. The
behavior is somewhat stricter than Coreutils with respect to invalid
Unicode in filenames. For a complete description of how --check
works, see the file b3sum/what_does_check_do.md.

- To support the --check feature, backslashes and newlines that appear

in filenames are now escaped in the output of b3sum. This is done
the same way as in Coreutils.

- To support --check interoperability between Unix and Windows,

backslashes in filepaths on Windows are now replaced with forward
slashes in the output of b3sum. Note that this is different from
Coreutils.

Ändern Zusammenfassung

Diff

--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
11 [package]
22 name = "blake3"
3-version = "0.3.3"
3+version = "0.3.4"
44 authors = ["Jack O'Connor <oconnor663@gmail.com>"]
55 description = "the BLAKE3 hash function"
66 repository = "https://github.com/BLAKE3-team/BLAKE3"
--- a/b3sum/Cargo.toml
+++ b/b3sum/Cargo.toml
@@ -1,6 +1,6 @@
11 [package]
22 name = "b3sum"
3-version = "0.3.3"
3+version = "0.3.4"
44 authors = ["Jack O'Connor <oconnor663@gmail.com>"]
55 description = "a command line implementation of the BLAKE3 hash function"
66 repository = "https://github.com/BLAKE3-team/BLAKE3"
--- a/b3sum/README.md
+++ b/b3sum/README.md
@@ -5,7 +5,7 @@ A command line utility for calculating
55 Coreutils tools like `b2sum` or `md5sum`.
66
77 ```
8-b3sum 0.3.3
8+b3sum 0.3.4
99
1010 USAGE:
1111 b3sum [FLAGS] [OPTIONS] [file]...
@@ -18,6 +18,8 @@ FLAGS:
1818 --no-mmap Disables memory mapping. Currently this also disables
1919 multithreading.
2020 --no-names Omits filenames in the output
21+ --quiet Skips printing OK for each successfully verified file.
22+ Must be used with --check.
2123 --raw Writes raw output bytes to stdout, rather than hex.
2224 --no-names is implied. In this case, only a single
2325 input is allowed.
@@ -34,7 +36,8 @@ OPTIONS:
3436 RAYON_NUM_THREADS is also respected.
3537
3638 ARGS:
37- <file>...
39+ <file>... Files to hash, or checkfiles to check. When no file is given,
40+ or when - is given, read standard input.
3841 ```
3942
4043 See also [this document about how the `--check` flag