Skip to content

Commit ca0ba52

Browse files
authored
Use the standard order of the [package] section fields (#400)
See RustCrypto/meta#22
1 parent 596cdeb commit ca0ba52

File tree

5 files changed

+22
-22
lines changed

5 files changed

+22
-22
lines changed

chacha20/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
[package]
22
name = "chacha20"
33
version = "0.10.0-pre.3"
4-
description = """
5-
The ChaCha20 stream cipher (RFC 8439) implemented in pure Rust using traits
6-
from the RustCrypto `cipher` crate, with optional architecture-specific
7-
hardware acceleration (AVX2, SSE2). Additionally provides the ChaCha8, ChaCha12,
8-
XChaCha20, XChaCha12 and XChaCha8 stream ciphers, and also optional
9-
rand_core-compatible RNGs based on those ciphers.
10-
"""
114
authors = ["RustCrypto Developers"]
12-
license = "Apache-2.0 OR MIT"
135
edition = "2024"
146
rust-version = "1.85"
15-
readme = "README.md"
167
documentation = "https://docs.rs/chacha20"
8+
readme = "README.md"
179
repository = "https://github.com/RustCrypto/stream-ciphers"
10+
license = "MIT OR Apache-2.0"
1811
keywords = ["crypto", "stream-cipher", "chacha8", "chacha12", "xchacha20"]
1912
categories = ["cryptography", "no-std"]
13+
description = """
14+
The ChaCha20 stream cipher (RFC 8439) implemented in pure Rust using traits
15+
from the RustCrypto `cipher` crate, with optional architecture-specific
16+
hardware acceleration (AVX2, SSE2). Additionally provides the ChaCha8, ChaCha12,
17+
XChaCha20, XChaCha12 and XChaCha8 stream ciphers, and also optional
18+
rand_core-compatible RNGs based on those ciphers.
19+
"""
2020

2121
[dependencies]
2222
cfg-if = "1"

hc-256/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[package]
22
name = "hc-256"
33
version = "0.6.0-pre"
4-
description = "HC-256 Stream Cipher"
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/hc-256"
8+
readme = "README.md"
119
repository = "https://github.com/RustCrypto/stream-ciphers"
10+
license = "MIT OR Apache-2.0"
1211
keywords = ["crypto", "stream-cipher", "trait"]
1312
categories = ["cryptography", "no-std"]
13+
description = "Pure Rust implementation of the HC-256 stream cipher"
1414

1515
[dependencies]
1616
cipher = "=0.5.0-pre.8"

rabbit/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[package]
22
name = "rabbit"
33
version = "0.5.0-pre"
4-
description = "An implementation of the Rabbit Stream Cipher Algorithm"
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/rabbit"
8+
readme = "README.md"
119
repository = "https://github.com/RustCrypto/stream-ciphers"
10+
license = "MIT OR Apache-2.0"
1211
keywords = ["crypto", "rabbit", "stream-cipher", "trait"]
1312
categories = ["cryptography", "no-std"]
13+
description = "Pure Rust implementation of the Rabbit stream cipher"
1414

1515
[dependencies]
1616
cipher = "=0.5.0-pre.8"

rc4/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[package]
22
name = "rc4"
33
version = "0.2.0-pre"
4-
description = "Pure Rust implementation of the RC4 stream cipher"
5-
authors = ["The Rust-Crypto Project Developers"]
6-
license = "MIT OR Apache-2.0"
4+
authors = ["RustCrypto Developers"]
75
edition = "2024"
86
rust-version = "1.85"
9-
readme = "README.md"
107
documentation = "https://docs.rs/rc4"
8+
readme = "README.md"
119
repository = "https://github.com/RustCrypto/stream-ciphers"
10+
license = "MIT OR Apache-2.0"
1211
keywords = ["arc4", "arcfour", "crypto", "stream-cipher", "trait"]
1312
categories = ["cryptography", "no-std"]
13+
description = "Pure Rust implementation of the RC4 stream cipher"
1414

1515
[dependencies]
1616
cipher = "=0.5.0-pre.8"

salsa20/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[package]
22
name = "salsa20"
33
version = "0.11.0-pre.2"
4-
description = "Salsa20 Stream Cipher"
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/salsa20"
8+
readme = "README.md"
119
repository = "https://github.com/RustCrypto/stream-ciphers"
10+
license = "MIT OR Apache-2.0"
1211
keywords = ["crypto", "stream-cipher", "trait", "xsalsa20"]
1312
categories = ["cryptography", "no-std"]
13+
description = "Pure Rust implementation of the Salsa20 stream cipher"
1414

1515
[dependencies]
1616
cfg-if = "1"

0 commit comments

Comments
 (0)