Skip to content

Commit d96c7f3

Browse files
authored
Use the standard order of [package] fields (#115)
See RustCrypto/meta#22
1 parent 1efeff7 commit d96c7f3

3 files changed

Lines changed: 17 additions & 26 deletions

File tree

ascon/Cargo.toml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,16 @@
11
[package]
22
name = "ascon"
33
version = "0.5.0-rc.0"
4-
description = "Pure Rust implementation of the Ascon permutation"
5-
authors = [
6-
"Sebastian Ramacher <sebastian.ramacher@ait.ac.at>",
7-
"RustCrypto Developers",
8-
]
9-
license = "Apache-2.0 OR MIT"
4+
authors = ["RustCrypto Developers"]
5+
edition = "2024"
6+
rust-version = "1.85"
107
documentation = "https://docs.rs/ascon"
11-
homepage = "https://github.com/RustCrypto/sponges/tree/master/ascon"
8+
readme = "README.md"
129
repository = "https://github.com/RustCrypto/sponges"
10+
license = "Apache-2.0 OR MIT"
1311
keywords = ["Ascon", "crypto", "permutation"]
1412
categories = ["cryptography", "no-std"]
15-
readme = "README.md"
16-
edition = "2024"
17-
rust-version = "1.85"
13+
description = "Pure Rust implementation of the Ascon permutation"
1814

1915
[dependencies]
2016
zeroize = { version = "1.6", default-features = false, optional = true }

bash-f/Cargo.toml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
[package]
22
name = "bash-f"
33
version = "0.1.0"
4-
description = "Pure Rust implementation of the bash-f sponge function defined in STB 34.101.77-2020"
5-
license = "Apache-2.0 OR MIT"
64
authors = ["RustCrypto Developers"]
5+
edition = "2024"
6+
rust-version = "1.85"
77
documentation = "https://docs.rs/bash"
8-
homepage = "https://github.com/RustCrypto/sponges/tree/master/bash"
8+
readme = "README.md"
99
repository = "https://github.com/RustCrypto/sponges"
10+
license = "Apache-2.0 OR MIT"
1011
keywords = ["bash", "sponge", "belt", "permutation"]
1112
categories = ["cryptography", "no-std"]
12-
readme = "README.md"
13-
edition = "2024"
14-
rust-version = "1.85"
13+
description = "Pure Rust implementation of the bash-f sponge function defined in STB 34.101.77-2020"
1514

1615
[lints]
1716
workspace = true

keccak/Cargo.toml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,16 @@
11
[package]
22
name = "keccak"
3-
version = "0.2.0-rc.2"
4-
description = """
5-
Pure Rust implementation of the Keccak sponge function including the keccak-f
6-
and keccak-p variants
7-
"""
3+
version = "0.2.0"
84
authors = ["RustCrypto Developers"]
9-
license = "Apache-2.0 OR MIT"
5+
edition = "2024"
6+
rust-version = "1.85"
107
documentation = "https://docs.rs/keccak"
11-
homepage = "https://github.com/RustCrypto/sponges/tree/master/keccak"
8+
readme = "README.md"
129
repository = "https://github.com/RustCrypto/sponges"
10+
license = "Apache-2.0 OR MIT"
1311
keywords = ["crypto", "sponge", "keccak", "keccak-f", "keccak-p"]
1412
categories = ["cryptography", "no-std"]
15-
readme = "README.md"
16-
edition = "2024"
17-
rust-version = "1.85"
13+
description = "Pure Rust implementation of the Keccak sponge functions"
1814

1915
[dependencies]
2016
cfg-if = "1"

0 commit comments

Comments
 (0)