From 6bde270d2abfb4bf34e8157137307cba1b2d145e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 25 Feb 2025 10:40:24 +0800 Subject: [PATCH] chore(deps): Bump blake3 from 1.5.5 to 1.6.0 (#999) Bumps [blake3](https://github.com/BLAKE3-team/BLAKE3) from 1.5.5 to 1.6.0. - [Release notes](https://github.com/BLAKE3-team/BLAKE3/releases) - [Commits](https://github.com/BLAKE3-team/BLAKE3/compare/1.5.5...1.6.0) --- updated-dependencies: - dependency-name: blake3 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 5 +++-- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b5e7e6e8..9b81ffd0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -406,15 +406,16 @@ checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf" [[package]] name = "blake3" -version = "1.5.5" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b8ee0c1824c4dea5b5f81736aff91bae041d2c07ee1192bec91054e10e3e601e" +checksum = "1230237285e3e10cde447185e8975408ae24deaa67205ce684805c25bc0c7937" dependencies = [ "arrayref", "arrayvec", "cc", "cfg-if", "constant_time_eq", + "memmap2", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index fbf38d7a..ee467b14 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -60,7 +60,7 @@ rustls = { version = "0.22.4", features = ["tls12"] } rustls-pki-types = "1.11.0" rustls-pemfile = "2.2.0" sha2 = "0.10" -blake3 = "1.5.5" +blake3 = "1.6.0" crc = "3.2.1" uuid = { version = "1.13", features = ["v4"] } hex = "0.4"