Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 6 additions & 10 deletions ascon/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,16 @@
[package]
name = "ascon"
version = "0.5.0-rc.0"
description = "Pure Rust implementation of the Ascon permutation"
authors = [
"Sebastian Ramacher <sebastian.ramacher@ait.ac.at>",
"RustCrypto Developers",
]
license = "Apache-2.0 OR MIT"
authors = ["RustCrypto Developers"]
edition = "2024"
rust-version = "1.85"
documentation = "https://docs.rs/ascon"
homepage = "https://github.com/RustCrypto/sponges/tree/master/ascon"
readme = "README.md"
repository = "https://github.com/RustCrypto/sponges"
license = "Apache-2.0 OR MIT"
keywords = ["Ascon", "crypto", "permutation"]
categories = ["cryptography", "no-std"]
readme = "README.md"
edition = "2024"
rust-version = "1.85"
description = "Pure Rust implementation of the Ascon permutation"

[dependencies]
zeroize = { version = "1.6", default-features = false, optional = true }
Expand Down
11 changes: 5 additions & 6 deletions bash-f/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
[package]
name = "bash-f"
version = "0.1.0"
description = "Pure Rust implementation of the bash-f sponge function defined in STB 34.101.77-2020"
license = "Apache-2.0 OR MIT"
authors = ["RustCrypto Developers"]
edition = "2024"
rust-version = "1.85"
documentation = "https://docs.rs/bash"
homepage = "https://github.com/RustCrypto/sponges/tree/master/bash"
readme = "README.md"
repository = "https://github.com/RustCrypto/sponges"
license = "Apache-2.0 OR MIT"
keywords = ["bash", "sponge", "belt", "permutation"]
categories = ["cryptography", "no-std"]
readme = "README.md"
edition = "2024"
rust-version = "1.85"
description = "Pure Rust implementation of the bash-f sponge function defined in STB 34.101.77-2020"

[lints]
workspace = true
16 changes: 6 additions & 10 deletions keccak/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,16 @@
[package]
name = "keccak"
version = "0.2.0-rc.2"
description = """
Pure Rust implementation of the Keccak sponge function including the keccak-f
and keccak-p variants
"""
version = "0.2.0"
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ups. This version change is accidental, but I guess it's fine since we plan to do a release soon.

authors = ["RustCrypto Developers"]
license = "Apache-2.0 OR MIT"
edition = "2024"
rust-version = "1.85"
documentation = "https://docs.rs/keccak"
homepage = "https://github.com/RustCrypto/sponges/tree/master/keccak"
readme = "README.md"
repository = "https://github.com/RustCrypto/sponges"
license = "Apache-2.0 OR MIT"
keywords = ["crypto", "sponge", "keccak", "keccak-f", "keccak-p"]
categories = ["cryptography", "no-std"]
readme = "README.md"
edition = "2024"
rust-version = "1.85"
description = "Pure Rust implementation of the Keccak sponge functions"

[dependencies]
cfg-if = "1"
Expand Down
Loading