Skip to content

Commit eeac8f1

Browse files
authored
Cut new prereleases (#2148)
Releases the following, with `getrandom` v0.4.0-rc.0 and `rand_core` v0.10.0-rc-3 as requirements: - `aead` v0.6.0-rc.5 - `cipher` v0.5.0-rc.3 - `crypto-common` v0.2.0-rc.8 - `digest` v0.11.0-rc.5 - `kem` v0.4.0-rc.1 - `signature` v0.3.0-rc.6 - `universal-hash` v0.6.0-rc.4 The `password-hash` crate has been withheld until we can upgrade the `phc` crate to `getrandom` v0.4.0-rc.0 as well.
1 parent a9e1c42 commit eeac8f1

9 files changed

Lines changed: 28 additions & 28 deletions

File tree

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aead/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aead"
3-
version = "0.6.0-rc.4"
3+
version = "0.6.0-rc.5"
44
authors = ["RustCrypto Developers"]
55
edition = "2024"
66
rust-version = "1.85"
@@ -16,7 +16,7 @@ such as AES-GCM as ChaCha20Poly1305, which provide a high-level API
1616
"""
1717

1818
[dependencies]
19-
crypto-common = { version = "0.2.0-rc.7", path = "../crypto-common" }
19+
crypto-common = { version = "0.2.0-rc.8", path = "../crypto-common" }
2020
inout = "0.2"
2121

2222
# optional dependencies

cipher/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cipher"
3-
version = "0.5.0-rc.2"
3+
version = "0.5.0-rc.3"
44
authors = ["RustCrypto Developers"]
55
edition = "2024"
66
rust-version = "1.85"
@@ -13,7 +13,7 @@ categories = ["cryptography", "no-std"]
1313
description = "Traits for describing block ciphers and stream ciphers"
1414

1515
[dependencies]
16-
crypto-common = { version = "0.2.0-rc.7", path = "../crypto-common" }
16+
crypto-common = { version = "0.2.0-rc.8", path = "../crypto-common" }
1717
inout = "0.2"
1818

1919
# optional dependencies

crypto-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "crypto-common"
3-
version = "0.2.0-rc.7"
3+
version = "0.2.0-rc.8"
44
authors = ["RustCrypto Developers"]
55
edition = "2024"
66
rust-version = "1.85"

crypto/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@ categories = ["cryptography", "no-std"]
1313
description = "Facade crate for all of the RustCrypto traits (e.g. `aead`, `cipher`, `digest`)"
1414

1515
[dependencies]
16-
crypto-common = { version = "0.2.0-rc.7", path = "../crypto-common", default-features = false }
16+
crypto-common = { version = "0.2.0-rc.8", path = "../crypto-common", default-features = false }
1717

1818
# optional dependencies
19-
aead = { version = "0.6.0-rc.3", path = "../aead", optional = true }
20-
cipher = { version = "0.5.0-rc.2", path = "../cipher", optional = true }
21-
digest = { version = "0.11.0-rc.4", path = "../digest", optional = true, features = ["mac"] }
22-
elliptic-curve = { version = "0.14.0-rc.2", path = "../elliptic-curve", optional = true }
23-
password-hash = { version = "0.6.0-rc.0", path = "../password-hash", optional = true }
24-
signature = { version = "3.0.0-rc.0", path = "../signature", optional = true, default-features = false }
25-
universal-hash = { version = "0.6.0-rc.1", path = "../universal-hash", optional = true }
19+
aead = { version = "0.6.0-rc.5", path = "../aead", optional = true }
20+
cipher = { version = "0.5.0-rc.3", path = "../cipher", optional = true }
21+
digest = { version = "0.11.0-rc.5", path = "../digest", optional = true, features = ["mac"] }
22+
elliptic-curve = { version = "0.14.0-rc.17", path = "../elliptic-curve", optional = true }
23+
password-hash = { version = "0.6.0-rc.6", path = "../password-hash", optional = true }
24+
signature = { version = "3.0.0-rc.6", path = "../signature", optional = true, default-features = false }
25+
universal-hash = { version = "0.6.0-rc.4", path = "../universal-hash", optional = true }
2626

2727
[features]
2828
std = ["elliptic-curve/std"]

digest/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "digest"
3-
version = "0.11.0-rc.4"
3+
version = "0.11.0-rc.5"
44
authors = ["RustCrypto Developers"]
55
edition = "2024"
66
rust-version = "1.85"
@@ -13,7 +13,7 @@ categories = ["cryptography", "no-std"]
1313
description = "Traits for cryptographic hash functions and message authentication codes"
1414

1515
[dependencies]
16-
crypto-common = { version = "0.2.0-rc.7", path = "../crypto-common" }
16+
crypto-common = { version = "0.2.0-rc.8", path = "../crypto-common" }
1717

1818
# optional dependencies
1919
block-buffer = { version = "0.11", optional = true }

kem/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kem"
3-
version = "0.4.0-rc.0"
3+
version = "0.4.0-rc.1"
44
authors = ["RustCrypto Developers"]
55
edition = "2024"
66
rust-version = "1.85"
@@ -17,7 +17,7 @@ Traits for Key Encapsulation Mechanisms (KEMs): public-key cryptosystems designe
1717
"""
1818

1919
[dependencies]
20-
crypto-common = { version = "0.2.0-rc.7", features = ["rand_core"], path = "../crypto-common" }
20+
crypto-common = { version = "0.2.0-rc.8", features = ["rand_core"], path = "../crypto-common" }
2121
rand_core = "0.10.0-rc-3"
2222

2323
[features]

signature/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "signature"
3-
version = "3.0.0-rc.5"
3+
version = "3.0.0-rc.6"
44
authors = ["RustCrypto Developers"]
55
edition = "2024"
66
rust-version = "1.85"
@@ -13,7 +13,7 @@ categories = ["cryptography", "no-std"]
1313
description = "Traits for cryptographic signature algorithms (e.g. ECDSA, Ed25519)"
1414

1515
[dependencies]
16-
digest = { version = "0.11.0-rc.4", optional = true, default-features = false }
16+
digest = { version = "0.11.0-rc.5", optional = true, default-features = false }
1717
rand_core = { version = "0.10.0-rc-3", optional = true, default-features = false }
1818

1919
[features]

universal-hash/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "universal-hash"
3-
version = "0.6.0-rc.3"
3+
version = "0.6.0-rc.4"
44
authors = ["RustCrypto Developers"]
55
edition = "2024"
66
rust-version = "1.85"
@@ -13,7 +13,7 @@ categories = ["cryptography", "no-std"]
1313
description = "Traits which describe the functionality of universal hash functions (UHFs)"
1414

1515
[dependencies]
16-
crypto-common = { version = "0.2.0-rc.7", path = "../crypto-common" }
16+
crypto-common = { version = "0.2.0-rc.8", path = "../crypto-common" }
1717
subtle = { version = "2.4", default-features = false }
1818

1919
[package.metadata.docs.rs]

0 commit comments

Comments
 (0)