diff --git a/ascon/Cargo.toml b/ascon/Cargo.toml index 5de9351..61a307a 100644 --- a/ascon/Cargo.toml +++ b/ascon/Cargo.toml @@ -1,20 +1,16 @@ [package] name = "ascon" version = "0.5.0-rc.0" -description = "Pure Rust implementation of the Ascon permutation" -authors = [ - "Sebastian Ramacher ", - "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 } diff --git a/bash-f/Cargo.toml b/bash-f/Cargo.toml index 7baffdd..43e2304 100644 --- a/bash-f/Cargo.toml +++ b/bash-f/Cargo.toml @@ -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 diff --git a/keccak/Cargo.toml b/keccak/Cargo.toml index 52ca012..d5d6550 100644 --- a/keccak/Cargo.toml +++ b/keccak/Cargo.toml @@ -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" 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"