Cut new prereleases (#90)

Releases the following:
- `ascon` v0.5.0-rc.0
- `keccak` v0.2.0-rc.0
This commit is contained in:
Tony Arcieri 2025-09-02 20:15:00 -06:00 committed by GitHub
parent 2bc1c383a4
commit 95a176c25b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 6 additions and 6 deletions

6
Cargo.lock generated
View File

@ -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",
]

View File

@ -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 <sebastian.ramacher@ait.ac.at>",
@ -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

View File

@ -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