From f9816116437907b86a56869152bb6c1686abb5f6 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Wed, 28 May 2025 15:54:20 -0600 Subject: [PATCH] crypto-common v0.2.0-rc.3 --- Cargo.lock | 2 +- aead/Cargo.toml | 2 +- cipher/Cargo.toml | 2 +- crypto-common/Cargo.toml | 2 +- crypto/Cargo.toml | 2 +- digest/Cargo.toml | 2 +- universal-hash/Cargo.toml | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9aadabffd..2a65d13c5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -171,7 +171,7 @@ dependencies = [ [[package]] name = "crypto-common" -version = "0.2.0-rc.2" +version = "0.2.0-rc.3" dependencies = [ "hybrid-array", "rand_core", diff --git a/aead/Cargo.toml b/aead/Cargo.toml index 359edd7d7..50768f9d6 100644 --- a/aead/Cargo.toml +++ b/aead/Cargo.toml @@ -16,7 +16,7 @@ such as AES-GCM as ChaCha20Poly1305, which provide a high-level API """ [dependencies] -crypto-common = { version = "0.2.0-rc.1", path = "../crypto-common" } +crypto-common = { version = "0.2.0-rc.3", path = "../crypto-common" } inout = "0.2.0-rc.4" # optional dependencies diff --git a/cipher/Cargo.toml b/cipher/Cargo.toml index 4ef179087..c8b2b0325 100644 --- a/cipher/Cargo.toml +++ b/cipher/Cargo.toml @@ -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.2", path = "../crypto-common" } +crypto-common = { version = "0.2.0-rc.3", path = "../crypto-common" } inout = "0.2.0-rc.4" # optional dependencies diff --git a/crypto-common/Cargo.toml b/crypto-common/Cargo.toml index 42d338368..5cdf89f25 100644 --- a/crypto-common/Cargo.toml +++ b/crypto-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crypto-common" -version = "0.2.0-rc.2" +version = "0.2.0-rc.3" authors = ["RustCrypto Developers"] edition = "2024" rust-version = "1.85" diff --git a/crypto/Cargo.toml b/crypto/Cargo.toml index 591a90ee2..013af7094 100644 --- a/crypto/Cargo.toml +++ b/crypto/Cargo.toml @@ -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.1", path = "../crypto-common", default-features = false } +crypto-common = { version = "0.2.0-rc.3", path = "../crypto-common", default-features = false } # optional dependencies aead = { version = "0.6.0-rc.0", path = "../aead", optional = true } diff --git a/digest/Cargo.toml b/digest/Cargo.toml index 895d1efe9..6f9e14f07 100644 --- a/digest/Cargo.toml +++ b/digest/Cargo.toml @@ -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.2", path = "../crypto-common" } +crypto-common = { version = "0.2.0-rc.3", path = "../crypto-common" } # optional dependencies block-buffer = { version = "0.11.0-rc.4", optional = true } diff --git a/universal-hash/Cargo.toml b/universal-hash/Cargo.toml index 588a82003..db7923dbb 100644 --- a/universal-hash/Cargo.toml +++ b/universal-hash/Cargo.toml @@ -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.1", path = "../crypto-common" } +crypto-common = { version = "0.2.0-rc.3", path = "../crypto-common" } subtle = { version = "2.4", default-features = false } [package.metadata.docs.rs]