Use the standard order of [package] fields (#115)

See https://github.com/RustCrypto/meta/issues/22
This commit is contained in:
Artyom Pavlov 2026-03-12 04:17:45 +03:00 committed by GitHub
parent 1efeff7d02
commit d96c7f3733
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 23 additions and 32 deletions

View File

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

View File

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

View File

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