From d96c7f3733a09606699d8dde7aeb67a1065a1a3d Mon Sep 17 00:00:00 2001 From: Artyom Pavlov Date: Thu, 12 Mar 2026 04:17:45 +0300 Subject: [PATCH] Use the standard order of `[package]` fields (#115) See https://github.com/RustCrypto/meta/issues/22 --- ascon/Cargo.toml | 20 ++++++++------------ bash-f/Cargo.toml | 15 +++++++-------- keccak/Cargo.toml | 20 ++++++++------------ 3 files changed, 23 insertions(+), 32 deletions(-) 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" -documentation = "https://docs.rs/ascon" -homepage = "https://github.com/RustCrypto/sponges/tree/master/ascon" -repository = "https://github.com/RustCrypto/sponges" -keywords = ["Ascon", "crypto", "permutation"] -categories = ["cryptography", "no-std"] -readme = "README.md" +authors = ["RustCrypto Developers"] edition = "2024" rust-version = "1.85" +documentation = "https://docs.rs/ascon" +readme = "README.md" +repository = "https://github.com/RustCrypto/sponges" +license = "Apache-2.0 OR MIT" +keywords = ["Ascon", "crypto", "permutation"] +categories = ["cryptography", "no-std"] +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"] -documentation = "https://docs.rs/bash" -homepage = "https://github.com/RustCrypto/sponges/tree/master/bash" -repository = "https://github.com/RustCrypto/sponges" -keywords = ["bash", "sponge", "belt", "permutation"] -categories = ["cryptography", "no-std"] -readme = "README.md" edition = "2024" rust-version = "1.85" +documentation = "https://docs.rs/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"] +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" -documentation = "https://docs.rs/keccak" -homepage = "https://github.com/RustCrypto/sponges/tree/master/keccak" -repository = "https://github.com/RustCrypto/sponges" -keywords = ["crypto", "sponge", "keccak", "keccak-f", "keccak-p"] -categories = ["cryptography", "no-std"] -readme = "README.md" edition = "2024" rust-version = "1.85" +documentation = "https://docs.rs/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"] +description = "Pure Rust implementation of the Keccak sponge functions" [dependencies] cfg-if = "1"