Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions aead/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aead"
version = "0.6.0-rc.4"
version = "0.6.0-rc.5"
authors = ["RustCrypto Developers"]
edition = "2024"
rust-version = "1.85"
Expand All @@ -16,7 +16,7 @@ such as AES-GCM as ChaCha20Poly1305, which provide a high-level API
"""

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

# optional dependencies
Expand Down
4 changes: 2 additions & 2 deletions cipher/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cipher"
version = "0.5.0-rc.2"
version = "0.5.0-rc.3"
authors = ["RustCrypto Developers"]
edition = "2024"
rust-version = "1.85"
Expand All @@ -13,7 +13,7 @@ categories = ["cryptography", "no-std"]
description = "Traits for describing block ciphers and stream ciphers"

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

# optional dependencies
Expand Down
2 changes: 1 addition & 1 deletion crypto-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "crypto-common"
version = "0.2.0-rc.7"
version = "0.2.0-rc.8"
authors = ["RustCrypto Developers"]
edition = "2024"
rust-version = "1.85"
Expand Down
16 changes: 8 additions & 8 deletions crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ categories = ["cryptography", "no-std"]
description = "Facade crate for all of the RustCrypto traits (e.g. `aead`, `cipher`, `digest`)"

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

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

[features]
std = ["elliptic-curve/std"]
Expand Down
4 changes: 2 additions & 2 deletions digest/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "digest"
version = "0.11.0-rc.4"
version = "0.11.0-rc.5"
authors = ["RustCrypto Developers"]
edition = "2024"
rust-version = "1.85"
Expand All @@ -13,7 +13,7 @@ categories = ["cryptography", "no-std"]
description = "Traits for cryptographic hash functions and message authentication codes"

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

# optional dependencies
block-buffer = { version = "0.11", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions kem/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kem"
version = "0.4.0-rc.0"
version = "0.4.0-rc.1"
authors = ["RustCrypto Developers"]
edition = "2024"
rust-version = "1.85"
Expand All @@ -17,7 +17,7 @@ Traits for Key Encapsulation Mechanisms (KEMs): public-key cryptosystems designe
"""

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

[features]
Expand Down
4 changes: 2 additions & 2 deletions signature/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "signature"
version = "3.0.0-rc.5"
version = "3.0.0-rc.6"
authors = ["RustCrypto Developers"]
edition = "2024"
rust-version = "1.85"
Expand All @@ -13,7 +13,7 @@ categories = ["cryptography", "no-std"]
description = "Traits for cryptographic signature algorithms (e.g. ECDSA, Ed25519)"

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

[features]
Expand Down
4 changes: 2 additions & 2 deletions universal-hash/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "universal-hash"
version = "0.6.0-rc.3"
version = "0.6.0-rc.4"
authors = ["RustCrypto Developers"]
edition = "2024"
rust-version = "1.85"
Expand All @@ -13,7 +13,7 @@ categories = ["cryptography", "no-std"]
description = "Traits which describe the functionality of universal hash functions (UHFs)"

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

[package.metadata.docs.rs]
Expand Down