Skip to content

Commit a3045ea

Browse files
authored
Use the standard order of [package] fields (#1237)
See RustCrypto/meta#22
1 parent a66ed6d commit a3045ea

File tree

16 files changed

+91
-94
lines changed

16 files changed

+91
-94
lines changed

aarch64-dit/Cargo.toml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,16 @@
11
[package]
22
name = "aarch64-dit"
3-
description = """
4-
Wrappers for enabling/disabling the Data Independent Timing (DIT) feature on AArch64 CPUs
5-
"""
63
version = "0.2.0-pre"
74
authors = ["RustCrypto Developers"]
8-
license = "Apache-2.0 OR MIT"
9-
homepage = "https://github.com/RustCrypto/utils/tree/master/aarch64-dit"
10-
repository = "https://github.com/RustCrypto/utils"
11-
categories = ["cryptography", "hardware-support", "no-std"]
12-
keywords = ["crypto", "intrinsics"]
13-
readme = "README.md"
145
edition = "2024"
156
rust-version = "1.85"
7+
documentation = "https://docs.rs/aarch64-dit"
8+
readme = "README.md"
9+
repository = "https://github.com/RustCrypto/utils"
10+
license = "Apache-2.0 OR MIT"
11+
keywords = ["crypto", "intrinsics"]
12+
categories = ["cryptography", "hardware-support", "no-std"]
13+
description = "Wrappers for enabling/disabling the Data Independent Timing (DIT) feature on AArch64 CPUs"
1614

1715
[dependencies]
1816
cpufeatures = { version = "0.3.0-pre", path = "../cpufeatures" }

blobby/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
name = "blobby"
33
version = "0.4.0-pre.1"
44
authors = ["RustCrypto Developers"]
5-
license = "MIT OR Apache-2.0"
6-
description = "Iterator over simple binary blob storage"
7-
documentation = "https://docs.rs/blobby"
8-
repository = "https://github.com/RustCrypto/utils"
9-
categories = ["no-std"]
105
edition = "2024"
116
rust-version = "1.85"
7+
documentation = "https://docs.rs/blobby"
128
readme = "README.md"
9+
repository = "https://github.com/RustCrypto/utils"
10+
license = "MIT OR Apache-2.0"
11+
categories = ["no-std"]
12+
description = "Iterator over simple binary blob storage"
1313

1414
[features]
1515
alloc = []

block-buffer/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
name = "block-buffer"
33
version = "0.11.0-rc.5"
44
authors = ["RustCrypto Developers"]
5-
license = "MIT OR Apache-2.0"
6-
description = "Buffer type for block processing of data"
5+
edition = "2024"
6+
rust-version = "1.85"
77
documentation = "https://docs.rs/block-buffer"
8+
readme = "README.md"
89
repository = "https://github.com/RustCrypto/utils"
10+
license = "MIT OR Apache-2.0"
911
keywords = ["block", "buffer"]
1012
categories = ["cryptography", "no-std"]
11-
readme = "README.md"
12-
edition = "2024"
13-
rust-version = "1.85"
13+
description = "Buffer type for block processing of data"
1414

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

block-padding/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[package]
22
name = "block-padding"
33
version = "0.4.0"
4-
description = "Padding and unpadding of messages divided into blocks."
54
authors = ["RustCrypto Developers"]
6-
license = "MIT OR Apache-2.0"
75
edition = "2024"
86
rust-version = "1.85"
97
documentation = "https://docs.rs/block-padding"
8+
readme = "README.md"
109
repository = "https://github.com/RustCrypto/utils"
10+
license = "MIT OR Apache-2.0"
1111
keywords = ["padding", "pkcs7", "ansix923", "iso7816"]
1212
categories = ["cryptography", "no-std"]
13-
readme = "README.md"
13+
description = "Padding and unpadding of messages divided into blocks."
1414

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

cmov/Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
[package]
22
name = "cmov"
3+
version = "0.4.0"
4+
authors = ["RustCrypto Developers"]
5+
edition = "2024"
6+
rust-version = "1.85"
7+
documentation = "https://docs.rs/cmov"
8+
readme = "README.md"
9+
repository = "https://github.com/RustCrypto/utils"
10+
license = "Apache-2.0 OR MIT"
11+
keywords = ["crypto", "intrinsics"]
12+
categories = ["cryptography", "hardware-support", "no-std"]
313
description = """
414
Conditional move CPU intrinsics which are guaranteed to execute in
515
constant-time and not be rewritten as branches by the compiler.
616
Provides wrappers for the CMOV family of instructions on x86/x86_64
717
and CSEL on AArch64.
818
"""
9-
version = "0.4.0"
10-
authors = ["RustCrypto Developers"]
11-
license = "Apache-2.0 OR MIT"
12-
homepage = "https://github.com/RustCrypto/utils/tree/master/cmov"
13-
repository = "https://github.com/RustCrypto/utils"
14-
categories = ["cryptography", "hardware-support", "no-std"]
15-
keywords = ["crypto", "intrinsics"]
16-
readme = "README.md"
17-
edition = "2024"
18-
rust-version = "1.85"

collectable/Cargo.toml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,14 @@
22
name = "collectable"
33
version = "0.1.0"
44
authors = ["RustCrypto Developers"]
5-
license = "Apache-2.0 OR MIT"
6-
description = "Fallible, no_std-friendly collection traits"
5+
edition = "2024"
6+
rust-version = "1.85"
77
documentation = "https://docs.rs/collectable"
88
repository = "https://github.com/RustCrypto/utils"
9-
categories = ["data-structures", "no-std"]
9+
license = "Apache-2.0 OR MIT"
1010
keywords = ["arrayvec", "heapless"]
11-
edition = "2024"
12-
rust-version = "1.85"
11+
categories = ["data-structures", "no-std"]
12+
description = "Fallible, no_std-friendly collection traits"
1313

1414
[features]
1515
alloc = []
16-
17-
[badges]
18-
maintenance = { status = "experimental" }
19-
travis-ci = { repository = "RustCrypto/utils" }

cpufeatures/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
[package]
22
name = "cpufeatures"
33
version = "0.3.0-pre"
4-
description = """
5-
Lightweight runtime CPU feature detection for aarch64, loongarch64, and x86/x86_64 targets,
6-
with no_std support and support for mobile targets including Android and iOS
7-
"""
84
authors = ["RustCrypto Developers"]
9-
license = "MIT OR Apache-2.0"
5+
edition = "2024"
6+
rust-version = "1.85"
107
documentation = "https://docs.rs/cpufeatures"
8+
readme = "README.md"
119
repository = "https://github.com/RustCrypto/utils"
10+
license = "MIT OR Apache-2.0"
1211
keywords = ["cpuid", "target-feature"]
1312
categories = ["hardware-support", "no-std"]
14-
readme = "README.md"
15-
edition = "2024"
16-
rust-version = "1.85"
13+
description = """
14+
Lightweight runtime CPU feature detection for aarch64, loongarch64, and x86/x86_64 targets,
15+
with no_std support and support for mobile targets including Android and iOS
16+
"""
1717

1818
[target.'cfg(all(target_arch = "aarch64", target_vendor = "apple"))'.dependencies]
1919
libc = { version = "0.2.155", default-features = false }

dbl/Cargo.toml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,18 @@
22
name = "dbl"
33
version = "0.5.0"
44
authors = ["RustCrypto Developers"]
5-
license = "MIT OR Apache-2.0"
6-
documentation = "https://docs.rs/dbl"
7-
repository = "https://github.com/RustCrypto/utils"
8-
keywords = ["crypto", "dbl", "gf", "galois"]
95
edition = "2024"
106
rust-version = "1.85"
7+
documentation = "https://docs.rs/dbl"
118
readme = "README.md"
12-
description = """Double operation in Galois Field `GF(2^128)` using the lexicographically first
13-
polynomial among the irreducible degree `n` polynomials having a minimum number of coefficients."""
9+
repository = "https://github.com/RustCrypto/utils"
10+
license = "MIT OR Apache-2.0"
11+
keywords = ["crypto", "dbl", "gf", "galois"]
12+
categories = ["cryptography", "no-std"]
13+
description = """
14+
Double operation in Galois Field `GF(2^128)` using the lexicographically first
15+
polynomial among the irreducible degree `n` polynomials having a minimum number of coefficients.
16+
"""
1417

1518
[dependencies]
1619
hybrid-array = "0.4"

digest-io/Cargo.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
[package]
22
name = "digest-io"
33
version = "0.1.0"
4-
description = "std::io-compatibility wrappers for traits defined in the digest crate"
54
authors = ["RustCrypto Developers"]
6-
license = "MIT OR Apache-2.0"
75
edition = "2024"
86
rust-version = "1.85"
97
documentation = "https://docs.rs/digest-io"
8+
readme = "README.md"
109
repository = "https://github.com/RustCrypto/utils"
10+
license = "MIT OR Apache-2.0"
11+
keywords = ["crypto", "digest", "wrappers"]
1112
categories = ["cryptography"]
12-
readme = "README.md"
13+
description = "std::io-compatibility wrappers for traits defined in the digest crate"
1314

1415
[dependencies]
1516
digest = "0.11.0-rc.3"

hex-literal/.gitignore

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)