From 827062651033535fb5055deaca4d53263c99bb3b Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sat, 30 Dec 2023 21:05:01 -0700 Subject: [PATCH] crypto-common v0.2.0-pre.2 --- Cargo.lock | 19 +++++++++---------- Cargo.toml | 3 ++- aead/Cargo.toml | 2 +- cipher/Cargo.toml | 2 +- crypto-common/Cargo.toml | 2 +- digest/Cargo.toml | 2 +- universal-hash/Cargo.toml | 2 +- 7 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 53bb6be5..e4a7c212 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -19,7 +19,7 @@ dependencies = [ "arrayvec", "blobby", "bytes", - "crypto-common 0.2.0-pre.1", + "crypto-common 0.2.0-pre.2", "heapless", ] @@ -127,10 +127,9 @@ dependencies = [ [[package]] name = "block-buffer" version = "0.11.0-pre.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1333cbcd5375733783541e609d067fdfc8285c13b2f0363c878091a4abe7fa5f" +source = "git+https://github.com/RustCrypto/utils.git?branch=crypto-common/v0.2.0-pre.2#1bf05ff2cf2019684be6c1478fb56d5efb21f5e1" dependencies = [ - "crypto-common 0.2.0-pre.1", + "crypto-common 0.2.0-pre.2", ] [[package]] @@ -145,7 +144,7 @@ dependencies = [ [[package]] name = "block-padding" version = "0.4.0-pre.1" -source = "git+https://github.com/RustCrypto/utils.git#5144cec5a1bbe34616d6c08a7775088fa56cace5" +source = "git+https://github.com/RustCrypto/utils.git?branch=crypto-common/v0.2.0-pre.2#1bf05ff2cf2019684be6c1478fb56d5efb21f5e1" dependencies = [ "hybrid-array", ] @@ -218,7 +217,7 @@ name = "cipher" version = "0.5.0-pre" dependencies = [ "blobby", - "crypto-common 0.2.0-pre.1", + "crypto-common 0.2.0-pre.2", "inout 0.2.0-pre.1", "zeroize", ] @@ -307,7 +306,7 @@ dependencies = [ [[package]] name = "crypto-common" -version = "0.2.0-pre.1" +version = "0.2.0-pre.2" dependencies = [ "getrandom", "hybrid-array", @@ -402,7 +401,7 @@ dependencies = [ "blobby", "block-buffer 0.11.0-pre.1", "const-oid 0.9.6", - "crypto-common 0.2.0-pre.1", + "crypto-common 0.2.0-pre.2", "subtle", ] @@ -701,7 +700,7 @@ dependencies = [ [[package]] name = "inout" version = "0.2.0-pre.1" -source = "git+https://github.com/RustCrypto/utils.git#5144cec5a1bbe34616d6c08a7775088fa56cace5" +source = "git+https://github.com/RustCrypto/utils.git?branch=crypto-common/v0.2.0-pre.2#1bf05ff2cf2019684be6c1478fb56d5efb21f5e1" dependencies = [ "block-padding 0.4.0-pre.1", "hybrid-array", @@ -1189,7 +1188,7 @@ dependencies = [ name = "universal-hash" version = "0.6.0-pre" dependencies = [ - "crypto-common 0.2.0-pre.1", + "crypto-common 0.2.0-pre.2", "subtle", ] diff --git a/Cargo.toml b/Cargo.toml index 9d04852c..5a71244d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,5 +16,6 @@ members = [ ] [patch.crates-io] +block-buffer = { git = "https://github.com/RustCrypto/utils.git", branch = "crypto-common/v0.2.0-pre.2" } crypto-common = { path = "crypto-common" } -inout = { git = "https://github.com/RustCrypto/utils.git" } +inout = { git = "https://github.com/RustCrypto/utils.git", branch = "crypto-common/v0.2.0-pre.2" } diff --git a/aead/Cargo.toml b/aead/Cargo.toml index bb4b0be1..2549c40d 100644 --- a/aead/Cargo.toml +++ b/aead/Cargo.toml @@ -16,7 +16,7 @@ categories = ["cryptography", "no-std"] rust-version = "1.65" [dependencies] -crypto-common = "=0.2.0-pre.1" +crypto-common = "=0.2.0-pre.2" # optional dependencies arrayvec = { version = "0.7", optional = true, default-features = false } diff --git a/cipher/Cargo.toml b/cipher/Cargo.toml index 4111bacf..11959cd5 100644 --- a/cipher/Cargo.toml +++ b/cipher/Cargo.toml @@ -13,7 +13,7 @@ keywords = ["crypto", "block-cipher", "stream-cipher", "trait"] categories = ["cryptography", "no-std"] [dependencies] -crypto-common = "=0.2.0-pre.1" +crypto-common = "=0.2.0-pre.2" inout = "=0.2.0-pre.1" # optional dependencies diff --git a/crypto-common/Cargo.toml b/crypto-common/Cargo.toml index 591583b9..8fe78d37 100644 --- a/crypto-common/Cargo.toml +++ b/crypto-common/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "crypto-common" description = "Common cryptographic traits" -version = "0.2.0-pre.1" +version = "0.2.0-pre.2" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" readme = "README.md" diff --git a/digest/Cargo.toml b/digest/Cargo.toml index 07d535ac..1102dfd4 100644 --- a/digest/Cargo.toml +++ b/digest/Cargo.toml @@ -13,7 +13,7 @@ keywords = ["digest", "crypto", "hash"] categories = ["cryptography", "no-std"] [dependencies] -crypto-common = "=0.2.0-pre.1" +crypto-common = "=0.2.0-pre.2" # optional dependencies block-buffer = { version = "=0.11.0-pre.1", optional = true } diff --git a/universal-hash/Cargo.toml b/universal-hash/Cargo.toml index e1173e1f..fac9f06e 100644 --- a/universal-hash/Cargo.toml +++ b/universal-hash/Cargo.toml @@ -13,7 +13,7 @@ keywords = ["crypto", "mac"] categories = ["cryptography", "no-std"] [dependencies] -crypto-common = "=0.2.0-pre.1" +crypto-common = "=0.2.0-pre.2" subtle = { version = "2.4", default-features = false } [features]