diff options
| author | Jack O'Connor <[email protected]> | 2024-11-26 18:16:20 -0800 |
|---|---|---|
| committer | Jack O'Connor <[email protected]> | 2024-11-26 18:16:20 -0800 |
| commit | 81f772a4cd70dc0325047a6a737d2f6f4b92180e (patch) | |
| tree | 627b465ce6641e7f8dd0b5bdd9c1ada2d23f380a /b3sum | |
| parent | c57d6b6ac25a08360f0adf82f7bbe87156a5fec0 (diff) | |
version 1.5.51.5.5
Changes since 1.5.4:
- `b3sum --check` now supports checkfiles with Windows-style newlines.
`b3sum` still emits Unix-style newlines, even on Windows, but
sometimes text editors or version control tools will swap them.
- The "digest" feature (deleted in v1.5.2) has been added back to the
`blake3` crate. This is for backwards compatibility only, and it's
insta-deprecated. All callers should prefer the "traits-preview"
feature.
Diffstat (limited to 'b3sum')
| -rw-r--r-- | b3sum/Cargo.lock | 8 | ||||
| -rw-r--r-- | b3sum/Cargo.toml | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/b3sum/Cargo.lock b/b3sum/Cargo.lock index 9363a7b..2904481 100644 --- a/b3sum/Cargo.lock +++ b/b3sum/Cargo.lock @@ -71,7 +71,7 @@ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" [[package]] name = "b3sum" -version = "1.5.4" +version = "1.5.5" dependencies = [ "anyhow", "blake3", @@ -91,7 +91,7 @@ checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" [[package]] name = "blake3" -version = "1.5.4" +version = "1.5.5" dependencies = [ "arrayref", "arrayvec", @@ -249,9 +249,9 @@ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" [[package]] name = "libc" -version = "0.2.165" +version = "0.2.166" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fcb4d3d38eab6c5239a362fa8bae48c03baf980a6e7079f063942d563ef3533e" +checksum = "c2ccc108bbc0b1331bd061864e7cd823c0cab660bbe6970e66e2c0614decde36" [[package]] name = "linux-raw-sys" diff --git a/b3sum/Cargo.toml b/b3sum/Cargo.toml index 0671624..81eb25e 100644 --- a/b3sum/Cargo.toml +++ b/b3sum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "b3sum" -version = "1.5.4" +version = "1.5.5" authors = ["Jack O'Connor <[email protected]>"] description = "a command line implementation of the BLAKE3 hash function" repository = "https://github.com/BLAKE3-team/BLAKE3" |
