Skip to content

Commit

Permalink
Use the standard order of the [package] section fields (#1773)
Browse files Browse the repository at this point in the history
  • Loading branch information
newpavlov authored Mar 10, 2025
1 parent bd20996 commit 266b044
Show file tree
Hide file tree
Showing 12 changed files with 67 additions and 72 deletions.
12 changes: 6 additions & 6 deletions aead/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
[package]
name = "aead"
version = "0.6.0-rc.0"
description = """
Traits for Authenticated Encryption with Associated Data (AEAD) algorithms,
such as AES-GCM as ChaCha20Poly1305, which provide a high-level API
"""
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
readme = "README.md"
edition = "2024"
rust-version = "1.85"
documentation = "https://docs.rs/aead"
readme = "README.md"
repository = "https://github.com/RustCrypto/traits"
license = "MIT OR Apache-2.0"
keywords = ["crypto", "encryption"]
categories = ["cryptography", "no-std"]
description = """
Traits for Authenticated Encryption with Associated Data (AEAD) algorithms,
such as AES-GCM as ChaCha20Poly1305, which provide a high-level API
"""

[dependencies]
crypto-common = { version = "0.2.0-rc.1", path = "../crypto-common" }
Expand Down
11 changes: 5 additions & 6 deletions async-signature/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
[package]
name = "async-signature"
description = "Traits for cryptographic signature algorithms (e.g. ECDSA, Ed25519)"
version = "0.6.0-pre.4"
authors = ["RustCrypto Developers"]
license = "Apache-2.0 OR MIT"
edition = "2024"
rust-version = "1.85"
documentation = "https://docs.rs/async-signature"
homepage = "https://github.com/RustCrypto/traits/tree/master/async-signature"
repository = "https://github.com/RustCrypto/traits"
readme = "README.md"
repository = "https://github.com/RustCrypto/traits"
license = "Apache-2.0 OR MIT"
keywords = ["crypto", "ecdsa", "ed25519", "signature", "signing"]
categories = ["cryptography", "no-std"]
edition = "2024"
rust-version = "1.85"
description = "Traits for cryptographic signature algorithms (e.g. ECDSA, Ed25519)"

[dependencies]
signature = "=2.3.0-pre.6"
Expand Down
6 changes: 3 additions & 3 deletions cipher/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "cipher"
description = "Traits for describing block ciphers and stream ciphers"
version = "0.5.0-pre.8"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
readme = "README.md"
edition = "2024"
rust-version = "1.85"
documentation = "https://docs.rs/cipher"
readme = "README.md"
repository = "https://github.com/RustCrypto/traits"
license = "MIT OR Apache-2.0"
keywords = ["crypto", "block-cipher", "stream-cipher", "trait"]
categories = ["cryptography", "no-std"]
description = "Traits for describing block ciphers and stream ciphers"

[dependencies]
crypto-common = { version = "0.2.0-rc.2", path = "../crypto-common" }
Expand Down
6 changes: 3 additions & 3 deletions crypto-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "crypto-common"
description = "Common cryptographic traits"
version = "0.2.0-rc.2"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
readme = "README.md"
edition = "2024"
rust-version = "1.85"
documentation = "https://docs.rs/crypto-common"
readme = "README.md"
repository = "https://github.com/RustCrypto/traits"
license = "MIT OR Apache-2.0"
keywords = ["crypto", "traits"]
categories = ["cryptography", "no-std"]
description = "Common cryptographic traits"

[dependencies]
hybrid-array = "0.3"
Expand Down
10 changes: 5 additions & 5 deletions crypto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "crypto"
version = "0.6.0-pre"
description = "Facade crate for all of the RustCrypto traits (e.g. `aead`, `cipher`, `digest`)"
authors = ["The RustCrypto Project Developers"]
license = "Apache-2.0 OR MIT"
edition = "2024"
rust-version = "1.85"
documentation = "https://docs.rs/crypto"
readme = "README.md"
repository = "https://github.com/RustCrypto/traits"
license = "Apache-2.0 OR MIT"
keywords = ["crypto", "encryption", "rustcrypto"]
categories = ["cryptography", "no-std"]
readme = "README.md"
edition = "2024"
rust-version = "1.85"
description = "Facade crate for all of the RustCrypto traits (e.g. `aead`, `cipher`, `digest`)"

[dependencies]
crypto-common = { version = "0.2.0-rc.1", path = "../crypto-common", default-features = false }
Expand Down
6 changes: 3 additions & 3 deletions digest/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "digest"
description = "Traits for cryptographic hash functions and message authentication codes"
version = "0.11.0-pre.10"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
readme = "README.md"
edition = "2024"
rust-version = "1.85"
documentation = "https://docs.rs/digest"
readme = "README.md"
repository = "https://github.com/RustCrypto/traits"
license = "MIT OR Apache-2.0"
keywords = ["digest", "crypto", "hash"]
categories = ["cryptography", "no-std"]
description = "Traits for cryptographic hash functions and message authentication codes"

[dependencies]
crypto-common = { version = "0.2.0-rc.2", path = "../crypto-common" }
Expand Down
18 changes: 9 additions & 9 deletions elliptic-curve/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
[package]
name = "elliptic-curve"
version = "0.14.0-rc.1"
authors = ["RustCrypto Developers"]
edition = "2024"
rust-version = "1.85"
documentation = "https://docs.rs/elliptic-curve"
readme = "README.md"
repository = "https://github.com/RustCrypto/traits"
license = "Apache-2.0 OR MIT"
categories = ["cryptography", "no-std"]
keywords = ["crypto", "ecc", "elliptic", "weierstrass"]
description = """
General purpose Elliptic Curve Cryptography (ECC) support, including types
and traits for representing various elliptic curve forms, scalars, points,
and public/secret keys composed thereof.
"""
authors = ["RustCrypto Developers"]
license = "Apache-2.0 OR MIT"
homepage = "https://github.com/RustCrypto/traits/tree/master/elliptic-curve"
repository = "https://github.com/RustCrypto/traits"
readme = "README.md"
categories = ["cryptography", "no-std"]
keywords = ["crypto", "ecc", "elliptic", "weierstrass"]
edition = "2024"
rust-version = "1.85"

[dependencies]
base16ct = "0.2"
Expand Down
11 changes: 5 additions & 6 deletions kem/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
[package]
name = "kem"
description = "Traits for key encapsulation mechanisms"
version = "0.3.0-pre.0"
authors = ["RustCrypto Developers"]
license = "Apache-2.0 OR MIT"
edition = "2024"
rust-version = "1.85"
documentation = "https://docs.rs/kem"
homepage = "https://github.com/RustCrypto/traits/tree/master/kem"
repository = "https://github.com/RustCrypto/traits"
readme = "README.md"
repository = "https://github.com/RustCrypto/traits"
license = "Apache-2.0 OR MIT"
keywords = ["crypto"]
categories = ["cryptography", "no-std"]
edition = "2024"
rust-version = "1.85"
name = "kem"

[dependencies]
rand_core = "0.9"
Expand Down
19 changes: 9 additions & 10 deletions password-hash/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,21 +1,20 @@
[package]
name = "password-hash"
description = """
Traits which describe the functionality of password hashing algorithms,
as well as a `no_std`-friendly implementation of the PHC string format
(a well-defined subset of the Modular Crypt Format a.k.a. MCF)
"""
version = "0.6.0-rc.0"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
readme = "README.md"
edition = "2024"
rust-version = "1.85"
documentation = "https://docs.rs/password-hash"
homepage = "https://github.com/RustCrypto/traits/tree/master/password-hash"
readme = "README.md"
repository = "https://github.com/RustCrypto/traits"
license = "MIT OR Apache-2.0"
categories = ["authentication", "cryptography", "no-std"]
keywords = ["crypt", "mcf", "password", "pbkdf", "phc"]
edition = "2024"
rust-version = "1.85"
description = """
Traits which describe the functionality of password hashing algorithms,
as well as a `no_std`-friendly implementation of the PHC string format
(a well-defined subset of the Modular Crypt Format a.k.a. MCF)
"""

[dependencies]
base64ct = "1.6"
Expand Down
11 changes: 5 additions & 6 deletions signature/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
[package]
name = "signature"
description = "Traits for cryptographic signature algorithms (e.g. ECDSA, Ed25519)"
version = "2.3.0-pre.6"
authors = ["RustCrypto Developers"]
license = "Apache-2.0 OR MIT"
edition = "2024"
rust-version = "1.85"
documentation = "https://docs.rs/signature"
homepage = "https://github.com/RustCrypto/traits/tree/master/signature"
repository = "https://github.com/RustCrypto/traits"
readme = "README.md"
repository = "https://github.com/RustCrypto/traits"
license = "Apache-2.0 OR MIT"
keywords = ["crypto", "ecdsa", "ed25519", "signature", "signing"]
categories = ["cryptography", "no-std"]
edition = "2024"
rust-version = "1.85"
description = "Traits for cryptographic signature algorithms (e.g. ECDSA, Ed25519)"

[dependencies]
derive = { package = "signature_derive", version = "2", optional = true, path = "../signature_derive" }
Expand Down
23 changes: 11 additions & 12 deletions signature_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
[package]
name = "signature_derive"
version = "2.2.0"
authors = ["RustCrypto Developers"]
license = "Apache-2.0 OR MIT"
description = "Custom derive support for the 'signature' crate"
name = "signature_derive"
version = "2.2.0"
authors = ["RustCrypto Developers"]
edition = "2024"
rust-version = "1.85"
documentation = "https://docs.rs/signature"
homepage = "https://github.com/RustCrypto/traits/tree/master/signature_derive"
repository = "https://github.com/RustCrypto/traits"
readme = "README.md"
edition = "2024"
rust-version = "1.85"
keywords = ["crypto", "ecdsa", "ed25519", "signature", "signing"]
categories = ["cryptography", "no-std"]
readme = "README.md"
repository = "https://github.com/RustCrypto/traits"
license = "Apache-2.0 OR MIT"
keywords = ["crypto", "ecdsa", "ed25519", "signature", "signing"]
categories = ["cryptography", "no-std"]
description = "Custom derive support for the 'signature' crate"

[lib]
proc-macro = true
Expand Down
6 changes: 3 additions & 3 deletions universal-hash/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "universal-hash"
version = "0.6.0-rc.0"
description = "Traits which describe the functionality of universal hash functions (UHFs)"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
edition = "2024"
rust-version = "1.85"
readme = "README.md"
documentation = "https://docs.rs/universal-hash"
readme = "README.md"
repository = "https://github.com/RustCrypto/traits"
license = "MIT OR Apache-2.0"
keywords = ["crypto", "mac"]
categories = ["cryptography", "no-std"]
description = "Traits which describe the functionality of universal hash functions (UHFs)"

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

0 comments on commit 266b044

Please sign in to comment.