diff --git a/Cargo.lock b/Cargo.lock index cf659668..ca65ace9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -9,19 +9,19 @@ version = "0.4.0" [[package]] name = "block-buffer" version = "0.11.0-rc.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e9ef36a6fcdb072aa548f3da057640ec10859eb4e91ddf526ee648d50c76a949" dependencies = [ - "hex-literal 1.0.0", "hybrid-array", - "zeroize 1.8.2", ] [[package]] name = "block-buffer" -version = "0.11.0-rc.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e9ef36a6fcdb072aa548f3da057640ec10859eb4e91ddf526ee648d50c76a949" +version = "0.11.0" dependencies = [ + "hex-literal 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "hybrid-array", + "zeroize 1.8.2", ] [[package]] @@ -69,9 +69,9 @@ dependencies = [ [[package]] name = "crypto-common" -version = "0.2.0-rc.4" +version = "0.2.0-rc.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a8235645834fbc6832939736ce2f2d08192652269e11010a6240f61b908a1c6" +checksum = "919bd05924682a5480aec713596b9e2aabed3a0a6022fab6847f85a99e5f190a" dependencies = [ "hybrid-array", ] @@ -85,11 +85,11 @@ dependencies = [ [[package]] name = "digest" -version = "0.11.0-rc.3" +version = "0.11.0-rc.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dac89f8a64533a9b0eaa73a68e424db0fb1fd6271c74cc0125336a05f090568d" +checksum = "ea390c940e465846d64775e55e3115d5dc934acb953de6f6e6360bc232fe2bf7" dependencies = [ - "block-buffer 0.11.0-rc.5 (registry+https://github.com/rust-lang/crates.io-index)", + "block-buffer 0.11.0-rc.5", "const-oid", "crypto-common", ] @@ -111,13 +111,13 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" [[package]] name = "hex-literal" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bcaaec4551594c969335c98c903c1397853d4198408ea609190f420500f6be71" +version = "1.1.0" [[package]] name = "hex-literal" version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e712f64ec3850b98572bffac52e2c6f282b29fe6c5fa6d42334b30be438d95c1" [[package]] name = "hybrid-array" @@ -178,9 +178,9 @@ dependencies = [ [[package]] name = "quote" -version = "1.0.41" +version = "1.0.42" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1" +checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f" dependencies = [ "proc-macro2", ] @@ -236,9 +236,9 @@ dependencies = [ [[package]] name = "sha2" -version = "0.11.0-rc.2" +version = "0.11.0-rc.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d1e3878ab0f98e35b2df35fe53201d088299b41a6bb63e3e34dada2ac4abd924" +checksum = "19d43dc0354d88b791216bb5c1bfbb60c0814460cc653ae0ebd71f286d0bd927" dependencies = [ "cfg-if", "cpufeatures 0.2.17", @@ -257,9 +257,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.108" +version = "2.0.109" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da58917d35242480a05c2897064da0a80589a2a0476c9a3f2fdc83b53502e917" +checksum = "2f17c7e013e88258aa9543dcbe81aca68a667a9ac37cd69c9fbc07858bfe0e2f" dependencies = [ "proc-macro2", "quote", @@ -274,9 +274,9 @@ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" [[package]] name = "unicode-ident" -version = "1.0.20" +version = "1.0.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "462eeb75aeb73aea900253ce739c8e18a67423fadf006037cd3ff27e82748a06" +checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" [[package]] name = "wycheproof2blb" diff --git a/block-buffer/CHANGELOG.md b/block-buffer/CHANGELOG.md index cec02db4..948a1648 100644 --- a/block-buffer/CHANGELOG.md +++ b/block-buffer/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## UNRELEASED +## 0.11.0 (2025-11-07) ### Added - `ReadBuffer` type ([#823]) - Optional implementation of the `Zeroize` trait ([#963]) @@ -21,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed - `EagerBuffer::set_data` method. Use the `ReadBuffer` type instead. ([#823]) +[#823]: https://github.com/RustCrypto/utils/pull/823 [#963]: https://github.com/RustCrypto/utils/pull/963 [#1115]: https://github.com/RustCrypto/utils/pull/1115 [#1115]: https://github.com/RustCrypto/utils/pull/1116 diff --git a/block-buffer/Cargo.toml b/block-buffer/Cargo.toml index 63a464f8..a2c0eea8 100644 --- a/block-buffer/Cargo.toml +++ b/block-buffer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "block-buffer" -version = "0.11.0-rc.5" +version = "0.11.0" authors = ["RustCrypto Developers"] edition = "2024" rust-version = "1.85" @@ -10,7 +10,7 @@ repository = "https://github.com/RustCrypto/utils" license = "MIT OR Apache-2.0" keywords = ["block", "buffer"] categories = ["cryptography", "no-std"] -description = "Buffer type for block processing of data" +description = "Buffer types for block processing of data" [dependencies] hybrid-array = "0.4"