Skip to content

Commit 266b044

Browse files
authored
Use the standard order of the [package] section fields (#1773)
1 parent bd20996 commit 266b044

File tree

12 files changed

+67
-72
lines changed

12 files changed

+67
-72
lines changed

aead/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
[package]
22
name = "aead"
33
version = "0.6.0-rc.0"
4-
description = """
5-
Traits for Authenticated Encryption with Associated Data (AEAD) algorithms,
6-
such as AES-GCM as ChaCha20Poly1305, which provide a high-level API
7-
"""
84
authors = ["RustCrypto Developers"]
9-
license = "MIT OR Apache-2.0"
10-
readme = "README.md"
115
edition = "2024"
126
rust-version = "1.85"
137
documentation = "https://docs.rs/aead"
8+
readme = "README.md"
149
repository = "https://github.com/RustCrypto/traits"
10+
license = "MIT OR Apache-2.0"
1511
keywords = ["crypto", "encryption"]
1612
categories = ["cryptography", "no-std"]
13+
description = """
14+
Traits for Authenticated Encryption with Associated Data (AEAD) algorithms,
15+
such as AES-GCM as ChaCha20Poly1305, which provide a high-level API
16+
"""
1717

1818
[dependencies]
1919
crypto-common = { version = "0.2.0-rc.1", path = "../crypto-common" }

async-signature/Cargo.toml

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
[package]
22
name = "async-signature"
3-
description = "Traits for cryptographic signature algorithms (e.g. ECDSA, Ed25519)"
43
version = "0.6.0-pre.4"
54
authors = ["RustCrypto Developers"]
6-
license = "Apache-2.0 OR MIT"
5+
edition = "2024"
6+
rust-version = "1.85"
77
documentation = "https://docs.rs/async-signature"
8-
homepage = "https://github.com/RustCrypto/traits/tree/master/async-signature"
9-
repository = "https://github.com/RustCrypto/traits"
108
readme = "README.md"
9+
repository = "https://github.com/RustCrypto/traits"
10+
license = "Apache-2.0 OR MIT"
1111
keywords = ["crypto", "ecdsa", "ed25519", "signature", "signing"]
1212
categories = ["cryptography", "no-std"]
13-
edition = "2024"
14-
rust-version = "1.85"
13+
description = "Traits for cryptographic signature algorithms (e.g. ECDSA, Ed25519)"
1514

1615
[dependencies]
1716
signature = "=2.3.0-pre.6"

cipher/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[package]
22
name = "cipher"
3-
description = "Traits for describing block ciphers and stream ciphers"
43
version = "0.5.0-pre.8"
54
authors = ["RustCrypto Developers"]
6-
license = "MIT OR Apache-2.0"
7-
readme = "README.md"
85
edition = "2024"
96
rust-version = "1.85"
107
documentation = "https://docs.rs/cipher"
8+
readme = "README.md"
119
repository = "https://github.com/RustCrypto/traits"
10+
license = "MIT OR Apache-2.0"
1211
keywords = ["crypto", "block-cipher", "stream-cipher", "trait"]
1312
categories = ["cryptography", "no-std"]
13+
description = "Traits for describing block ciphers and stream ciphers"
1414

1515
[dependencies]
1616
crypto-common = { version = "0.2.0-rc.2", path = "../crypto-common" }

crypto-common/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[package]
22
name = "crypto-common"
3-
description = "Common cryptographic traits"
43
version = "0.2.0-rc.2"
54
authors = ["RustCrypto Developers"]
6-
license = "MIT OR Apache-2.0"
7-
readme = "README.md"
85
edition = "2024"
96
rust-version = "1.85"
107
documentation = "https://docs.rs/crypto-common"
8+
readme = "README.md"
119
repository = "https://github.com/RustCrypto/traits"
10+
license = "MIT OR Apache-2.0"
1211
keywords = ["crypto", "traits"]
1312
categories = ["cryptography", "no-std"]
13+
description = "Common cryptographic traits"
1414

1515
[dependencies]
1616
hybrid-array = "0.3"

crypto/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[package]
22
name = "crypto"
33
version = "0.6.0-pre"
4-
description = "Facade crate for all of the RustCrypto traits (e.g. `aead`, `cipher`, `digest`)"
54
authors = ["The RustCrypto Project Developers"]
6-
license = "Apache-2.0 OR MIT"
5+
edition = "2024"
6+
rust-version = "1.85"
77
documentation = "https://docs.rs/crypto"
8+
readme = "README.md"
89
repository = "https://github.com/RustCrypto/traits"
10+
license = "Apache-2.0 OR MIT"
911
keywords = ["crypto", "encryption", "rustcrypto"]
1012
categories = ["cryptography", "no-std"]
11-
readme = "README.md"
12-
edition = "2024"
13-
rust-version = "1.85"
13+
description = "Facade crate for all of the RustCrypto traits (e.g. `aead`, `cipher`, `digest`)"
1414

1515
[dependencies]
1616
crypto-common = { version = "0.2.0-rc.1", path = "../crypto-common", default-features = false }

digest/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[package]
22
name = "digest"
3-
description = "Traits for cryptographic hash functions and message authentication codes"
43
version = "0.11.0-pre.10"
54
authors = ["RustCrypto Developers"]
6-
license = "MIT OR Apache-2.0"
7-
readme = "README.md"
85
edition = "2024"
96
rust-version = "1.85"
107
documentation = "https://docs.rs/digest"
8+
readme = "README.md"
119
repository = "https://github.com/RustCrypto/traits"
10+
license = "MIT OR Apache-2.0"
1211
keywords = ["digest", "crypto", "hash"]
1312
categories = ["cryptography", "no-std"]
13+
description = "Traits for cryptographic hash functions and message authentication codes"
1414

1515
[dependencies]
1616
crypto-common = { version = "0.2.0-rc.2", path = "../crypto-common" }

elliptic-curve/Cargo.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
[package]
22
name = "elliptic-curve"
33
version = "0.14.0-rc.1"
4+
authors = ["RustCrypto Developers"]
5+
edition = "2024"
6+
rust-version = "1.85"
7+
documentation = "https://docs.rs/elliptic-curve"
8+
readme = "README.md"
9+
repository = "https://github.com/RustCrypto/traits"
10+
license = "Apache-2.0 OR MIT"
11+
categories = ["cryptography", "no-std"]
12+
keywords = ["crypto", "ecc", "elliptic", "weierstrass"]
413
description = """
514
General purpose Elliptic Curve Cryptography (ECC) support, including types
615
and traits for representing various elliptic curve forms, scalars, points,
716
and public/secret keys composed thereof.
817
"""
9-
authors = ["RustCrypto Developers"]
10-
license = "Apache-2.0 OR MIT"
11-
homepage = "https://github.com/RustCrypto/traits/tree/master/elliptic-curve"
12-
repository = "https://github.com/RustCrypto/traits"
13-
readme = "README.md"
14-
categories = ["cryptography", "no-std"]
15-
keywords = ["crypto", "ecc", "elliptic", "weierstrass"]
16-
edition = "2024"
17-
rust-version = "1.85"
1818

1919
[dependencies]
2020
base16ct = "0.2"

kem/Cargo.toml

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
[package]
2-
name = "kem"
32
description = "Traits for key encapsulation mechanisms"
43
version = "0.3.0-pre.0"
54
authors = ["RustCrypto Developers"]
6-
license = "Apache-2.0 OR MIT"
5+
edition = "2024"
6+
rust-version = "1.85"
77
documentation = "https://docs.rs/kem"
8-
homepage = "https://github.com/RustCrypto/traits/tree/master/kem"
9-
repository = "https://github.com/RustCrypto/traits"
108
readme = "README.md"
9+
repository = "https://github.com/RustCrypto/traits"
10+
license = "Apache-2.0 OR MIT"
1111
keywords = ["crypto"]
1212
categories = ["cryptography", "no-std"]
13-
edition = "2024"
14-
rust-version = "1.85"
13+
name = "kem"
1514

1615
[dependencies]
1716
rand_core = "0.9"

password-hash/Cargo.toml

+9-10
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
11
[package]
22
name = "password-hash"
3-
description = """
4-
Traits which describe the functionality of password hashing algorithms,
5-
as well as a `no_std`-friendly implementation of the PHC string format
6-
(a well-defined subset of the Modular Crypt Format a.k.a. MCF)
7-
"""
83
version = "0.6.0-rc.0"
94
authors = ["RustCrypto Developers"]
10-
license = "MIT OR Apache-2.0"
11-
readme = "README.md"
5+
edition = "2024"
6+
rust-version = "1.85"
127
documentation = "https://docs.rs/password-hash"
13-
homepage = "https://github.com/RustCrypto/traits/tree/master/password-hash"
8+
readme = "README.md"
149
repository = "https://github.com/RustCrypto/traits"
10+
license = "MIT OR Apache-2.0"
1511
categories = ["authentication", "cryptography", "no-std"]
1612
keywords = ["crypt", "mcf", "password", "pbkdf", "phc"]
17-
edition = "2024"
18-
rust-version = "1.85"
13+
description = """
14+
Traits which describe the functionality of password hashing algorithms,
15+
as well as a `no_std`-friendly implementation of the PHC string format
16+
(a well-defined subset of the Modular Crypt Format a.k.a. MCF)
17+
"""
1918

2019
[dependencies]
2120
base64ct = "1.6"

signature/Cargo.toml

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
[package]
22
name = "signature"
3-
description = "Traits for cryptographic signature algorithms (e.g. ECDSA, Ed25519)"
43
version = "2.3.0-pre.6"
54
authors = ["RustCrypto Developers"]
6-
license = "Apache-2.0 OR MIT"
5+
edition = "2024"
6+
rust-version = "1.85"
77
documentation = "https://docs.rs/signature"
8-
homepage = "https://github.com/RustCrypto/traits/tree/master/signature"
9-
repository = "https://github.com/RustCrypto/traits"
108
readme = "README.md"
9+
repository = "https://github.com/RustCrypto/traits"
10+
license = "Apache-2.0 OR MIT"
1111
keywords = ["crypto", "ecdsa", "ed25519", "signature", "signing"]
1212
categories = ["cryptography", "no-std"]
13-
edition = "2024"
14-
rust-version = "1.85"
13+
description = "Traits for cryptographic signature algorithms (e.g. ECDSA, Ed25519)"
1514

1615
[dependencies]
1716
derive = { package = "signature_derive", version = "2", optional = true, path = "../signature_derive" }

signature_derive/Cargo.toml

+11-12
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
[package]
2-
name = "signature_derive"
3-
version = "2.2.0"
4-
authors = ["RustCrypto Developers"]
5-
license = "Apache-2.0 OR MIT"
6-
description = "Custom derive support for the 'signature' crate"
2+
name = "signature_derive"
3+
version = "2.2.0"
4+
authors = ["RustCrypto Developers"]
5+
edition = "2024"
6+
rust-version = "1.85"
77
documentation = "https://docs.rs/signature"
8-
homepage = "https://github.com/RustCrypto/traits/tree/master/signature_derive"
9-
repository = "https://github.com/RustCrypto/traits"
10-
readme = "README.md"
11-
edition = "2024"
12-
rust-version = "1.85"
13-
keywords = ["crypto", "ecdsa", "ed25519", "signature", "signing"]
14-
categories = ["cryptography", "no-std"]
8+
readme = "README.md"
9+
repository = "https://github.com/RustCrypto/traits"
10+
license = "Apache-2.0 OR MIT"
11+
keywords = ["crypto", "ecdsa", "ed25519", "signature", "signing"]
12+
categories = ["cryptography", "no-std"]
13+
description = "Custom derive support for the 'signature' crate"
1514

1615
[lib]
1716
proc-macro = true

universal-hash/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[package]
22
name = "universal-hash"
33
version = "0.6.0-rc.0"
4-
description = "Traits which describe the functionality of universal hash functions (UHFs)"
54
authors = ["RustCrypto Developers"]
6-
license = "MIT OR Apache-2.0"
75
edition = "2024"
86
rust-version = "1.85"
9-
readme = "README.md"
107
documentation = "https://docs.rs/universal-hash"
8+
readme = "README.md"
119
repository = "https://github.com/RustCrypto/traits"
10+
license = "MIT OR Apache-2.0"
1211
keywords = ["crypto", "mac"]
1312
categories = ["cryptography", "no-std"]
13+
description = "Traits which describe the functionality of universal hash functions (UHFs)"
1414

1515
[dependencies]
1616
crypto-common = { version = "0.2.0-rc.1", path = "../crypto-common" }

0 commit comments

Comments
 (0)