WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
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
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion aead/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ such as AES-GCM as ChaCha20Poly1305, which provide a high-level API
"""

[dependencies]
crypto-common = { version = "0.2.0-rc.4", path = "../crypto-common" }
crypto-common = { version = "0.2.0-rc.5", path = "../crypto-common" }
inout = "0.2.0-rc.6"

# optional dependencies
Expand Down
2 changes: 1 addition & 1 deletion cipher/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.4", path = "../crypto-common" }
crypto-common = { version = "0.2.0-rc.5", path = "../crypto-common" }
inout = "0.2.0-rc.6"

# 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.4"
version = "0.2.0-rc.5"
authors = ["RustCrypto Developers"]
edition = "2024"
rust-version = "1.85"
Expand Down
2 changes: 1 addition & 1 deletion crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ 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.4", path = "../crypto-common", default-features = false }
crypto-common = { version = "0.2.0-rc.5", path = "../crypto-common", default-features = false }

# optional dependencies
aead = { version = "0.6.0-rc.0", path = "../aead", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion digest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.4", path = "../crypto-common" }
crypto-common = { version = "0.2.0-rc.5", path = "../crypto-common" }

# optional dependencies
block-buffer = { version = "0.11.0-rc.5", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion kem/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ categories = ["cryptography", "no-std"]
description = "Traits for key encapsulation mechanisms"

[dependencies]
crypto-common = { version = "0.2.0-rc.4", features = ["rand_core"], path = "../crypto-common" }
crypto-common = { version = "0.2.0-rc.5", features = ["rand_core"], path = "../crypto-common" }
rand_core = "0.10.0-rc-2"
zeroize = { version = "1.7", default-features = false }

Expand Down
2 changes: 1 addition & 1 deletion universal-hash/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.4", path = "../crypto-common" }
crypto-common = { version = "0.2.0-rc.5", path = "../crypto-common" }
subtle = { version = "2.4", default-features = false }

[package.metadata.docs.rs]
Expand Down