From 14b974f0e6f4289cc94d5d4fdfad543a9a1da472 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Wed, 25 Mar 2026 10:04:00 -0600 Subject: [PATCH] Cut rc.5 prereleases Fixes compatibility with the `digest` crate. Note: `hmac` already received a v0.13.0-rc.6 release in #256 which includes fixes for the same issue. Releases the following: - `cbc-mac` v0.2.0-rc.5 - `cmac` v0.8.0-rc.5 - `pmac` v0.8.0-rc.5 --- Cargo.lock | 6 +++--- cbc-mac/Cargo.toml | 2 +- cmac/Cargo.toml | 2 +- pmac/Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f19fd87..f9a20cd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -50,7 +50,7 @@ dependencies = [ [[package]] name = "cbc-mac" -version = "0.2.0-rc.4" +version = "0.2.0-rc.5" dependencies = [ "aes", "cipher", @@ -79,7 +79,7 @@ dependencies = [ [[package]] name = "cmac" -version = "0.8.0-rc.4" +version = "0.8.0-rc.5" dependencies = [ "aes", "cipher", @@ -235,7 +235,7 @@ dependencies = [ [[package]] name = "pmac" -version = "0.8.0-rc.4" +version = "0.8.0-rc.5" dependencies = [ "aes", "cipher", diff --git a/cbc-mac/Cargo.toml b/cbc-mac/Cargo.toml index 736883c..3e2ef5d 100644 --- a/cbc-mac/Cargo.toml +++ b/cbc-mac/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cbc-mac" -version = "0.2.0-rc.4" +version = "0.2.0-rc.5" description = "Implementation of Cipher Block Chaining Message Authentication Code (CBC-MAC)" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/cmac/Cargo.toml b/cmac/Cargo.toml index 6378560..254d242 100644 --- a/cmac/Cargo.toml +++ b/cmac/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cmac" -version = "0.8.0-rc.4" +version = "0.8.0-rc.5" description = "Generic implementation of Cipher-based Message Authentication Code" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" diff --git a/pmac/Cargo.toml b/pmac/Cargo.toml index d0f39b2..90a11ac 100644 --- a/pmac/Cargo.toml +++ b/pmac/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pmac" -version = "0.8.0-rc.4" +version = "0.8.0-rc.5" description = "Generic implementation of Parallelizable Message Authentication Code" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0"