Skip to content

Commit 7cb6b71

Browse files
authored
Use the standard order of the [package] section fields (#312)
See RustCrypto/meta#22
1 parent 1a58f24 commit 7cb6b71

File tree

3 files changed

+19
-19
lines changed

3 files changed

+19
-19
lines changed

ghash/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
name = "ghash"
33
version = "0.6.0-rc.6"
44
authors = ["RustCrypto Developers"]
5+
edition = "2024"
6+
rust-version = "1.85"
7+
documentation = "https://docs.rs/ghash"
8+
readme = "README.md"
9+
repository = "https://github.com/RustCrypto/universal-hashes"
510
license = "Apache-2.0 OR MIT"
11+
keywords = ["aes-gcm", "crypto", "universal-hashing"]
12+
categories = ["cryptography", "no-std"]
613
description = """
714
Universal hash over GF(2^128) useful for constructing a Message Authentication Code (MAC),
815
as in the AES-GCM authenticated encryption cipher.
916
"""
10-
documentation = "https://docs.rs/ghash"
11-
repository = "https://github.com/RustCrypto/universal-hashes"
12-
readme = "README.md"
13-
keywords = ["aes-gcm", "crypto", "universal-hashing"]
14-
categories = ["cryptography", "no-std"]
15-
rust-version = "1.85"
16-
edition = "2024"
1717

1818
[dependencies]
1919
polyval = { version = "0.7.0-rc.8", features = ["hazmat"] }

poly1305/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
name = "poly1305"
33
version = "0.9.0-rc.6"
44
authors = ["RustCrypto Developers"]
5-
license = "Apache-2.0 OR MIT"
6-
description = "The Poly1305 universal hash function and message authentication code"
5+
edition = "2024"
6+
rust-version = "1.85"
77
documentation = "https://docs.rs/poly1305"
8+
readme = "README.md"
89
repository = "https://github.com/RustCrypto/universal-hashes"
10+
license = "Apache-2.0 OR MIT"
911
keywords = ["crypto", "chacha20", "mac", "salsa20", "universal-hashing"]
1012
categories = ["cryptography", "no-std"]
11-
readme = "README.md"
12-
rust-version = "1.85"
13-
edition = "2024"
13+
description = "The Poly1305 universal hash function and message authentication code"
1414

1515
[dependencies]
1616
universal-hash = "0.6"

polyval/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
name = "polyval"
33
version = "0.7.0-rc.9"
44
authors = ["RustCrypto Developers"]
5+
edition = "2024"
6+
rust-version = "1.85"
7+
documentation = "https://docs.rs/polyval"
8+
readme = "README.md"
9+
repository = "https://github.com/RustCrypto/universal-hashes"
510
license = "Apache-2.0 OR MIT"
11+
keywords = ["aes-gcm", "aes-gcm-siv", "crypto", "ghash", "universal-hashing"]
12+
categories = ["cryptography", "no-std"]
613
description = """
714
POLYVAL is a GHASH-like universal hash over GF(2^128) useful for constructing
815
a Message Authentication Code (MAC)
916
"""
10-
documentation = "https://docs.rs/polyval"
11-
repository = "https://github.com/RustCrypto/universal-hashes"
12-
readme = "README.md"
13-
keywords = ["aes-gcm", "aes-gcm-siv", "crypto", "ghash", "universal-hashing"]
14-
categories = ["cryptography", "no-std"]
15-
rust-version = "1.85"
16-
edition = "2024"
1717

1818
[features]
1919
hazmat = []

0 commit comments

Comments
 (0)