From 95a176c25ba135cc3ca3a195b41ca41091fb0187 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Tue, 2 Sep 2025 20:15:00 -0600 Subject: [PATCH] Cut new prereleases (#90) Releases the following: - `ascon` v0.5.0-rc.0 - `keccak` v0.2.0-rc.0 --- Cargo.lock | 6 +++--- ascon/Cargo.toml | 4 ++-- keccak/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b42735f..3d67e6f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,10 +1,10 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "ascon" -version = "0.5.0-pre" +version = "0.5.0-rc.0" dependencies = [ "zeroize", ] @@ -20,7 +20,7 @@ dependencies = [ [[package]] name = "keccak" -version = "0.2.0-pre.0" +version = "0.2.0-rc.0" dependencies = [ "cpufeatures", ] diff --git a/ascon/Cargo.toml b/ascon/Cargo.toml index 7d6dba9..66643a3 100644 --- a/ascon/Cargo.toml +++ b/ascon/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ascon" -version = "0.5.0-pre" +version = "0.5.0-rc.0" description = "Pure Rust implementation of the Ascon permutation" authors = [ "Sebastian Ramacher ", @@ -17,7 +17,7 @@ edition = "2024" rust-version = "1.85" [dependencies] -zeroize = { version = "1.6.0", default-features = false, optional = true } +zeroize = { version = "1.6", default-features = false, optional = true } [features] no_unroll = [] # Do not unroll loops for binary size reduction diff --git a/keccak/Cargo.toml b/keccak/Cargo.toml index 13c8d9d..1f74529 100644 --- a/keccak/Cargo.toml +++ b/keccak/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "keccak" -version = "0.2.0-pre.0" +version = "0.2.0-rc.0" description = """ Pure Rust implementation of the Keccak sponge function including the keccak-f and keccak-p variants