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

Commit 7e2aaa5

Browse files
authored
crypto-common v0.2.0-rc.5 (#2065)
Includes update to `rand_core` v0.10.0 prereleases
1 parent db3d49d commit 7e2aaa5

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aead/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.4", path = "../crypto-common" }
19+
crypto-common = { version = "0.2.0-rc.5", path = "../crypto-common" }
2020
inout = "0.2.0-rc.6"
2121

2222
# optional dependencies

cipher/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.4", path = "../crypto-common" }
16+
crypto-common = { version = "0.2.0-rc.5", path = "../crypto-common" }
1717
inout = "0.2.0-rc.6"
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.4"
3+
version = "0.2.0-rc.5"
44
authors = ["RustCrypto Developers"]
55
edition = "2024"
66
rust-version = "1.85"

crypto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ 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.4", path = "../crypto-common", default-features = false }
16+
crypto-common = { version = "0.2.0-rc.5", path = "../crypto-common", default-features = false }
1717

1818
# optional dependencies
1919
aead = { version = "0.6.0-rc.0", path = "../aead", optional = true }

digest/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.4", path = "../crypto-common" }
16+
crypto-common = { version = "0.2.0-rc.5", path = "../crypto-common" }
1717

1818
# optional dependencies
1919
block-buffer = { version = "0.11.0-rc.5", optional = true }

kem/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ categories = ["cryptography", "no-std"]
1313
description = "Traits for key encapsulation mechanisms"
1414

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

universal-hash/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.4", path = "../crypto-common" }
16+
crypto-common = { version = "0.2.0-rc.5", path = "../crypto-common" }
1717
subtle = { version = "2.4", default-features = false }
1818

1919
[package.metadata.docs.rs]

0 commit comments

Comments
 (0)