From 4eaa750f63612fb44bdf00a76c3201dd534d1959 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Fri, 29 Dec 2023 18:00:24 -0700 Subject: [PATCH] crypto-common v0.2.0-pre.1 --- Cargo.lock | 12 ++++++------ aead/Cargo.toml | 2 +- cipher/Cargo.toml | 2 +- crypto-common/Cargo.toml | 2 +- digest/Cargo.toml | 2 +- universal-hash/Cargo.toml | 2 +- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2e5c16071..9d3b3e312 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -19,7 +19,7 @@ dependencies = [ "arrayvec", "blobby", "bytes", - "crypto-common 0.2.0-pre", + "crypto-common 0.2.0-pre.1", "heapless", ] @@ -129,7 +129,7 @@ name = "block-buffer" version = "0.11.0-pre" source = "git+https://github.com/RustCrypto/utils.git#314938fe8e16d55979e70d777f90a475abcfb7f4" dependencies = [ - "crypto-common 0.2.0-pre", + "crypto-common 0.2.0-pre.1", ] [[package]] @@ -217,7 +217,7 @@ name = "cipher" version = "0.5.0-pre" dependencies = [ "blobby", - "crypto-common 0.2.0-pre", + "crypto-common 0.2.0-pre.1", "inout 0.2.0-pre", "zeroize", ] @@ -306,7 +306,7 @@ dependencies = [ [[package]] name = "crypto-common" -version = "0.2.0-pre" +version = "0.2.0-pre.1" dependencies = [ "getrandom", "hybrid-array", @@ -401,7 +401,7 @@ dependencies = [ "blobby", "block-buffer 0.11.0-pre", "const-oid 0.9.6", - "crypto-common 0.2.0-pre", + "crypto-common 0.2.0-pre.1", "subtle", ] @@ -1188,7 +1188,7 @@ dependencies = [ name = "universal-hash" version = "0.6.0-pre" dependencies = [ - "crypto-common 0.2.0-pre", + "crypto-common 0.2.0-pre.1", "subtle", ] diff --git a/aead/Cargo.toml b/aead/Cargo.toml index 75f112b52..bb4b0be1c 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" +crypto-common = "=0.2.0-pre.1" # optional dependencies arrayvec = { version = "0.7", optional = true, default-features = false } diff --git a/cipher/Cargo.toml b/cipher/Cargo.toml index 1fb08c1e3..03b10c425 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" +crypto-common = "=0.2.0-pre.1" inout = "=0.2.0-pre" # optional dependencies diff --git a/crypto-common/Cargo.toml b/crypto-common/Cargo.toml index 0e1e8fd31..bb82334cc 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" +version = "0.2.0-pre.1" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" readme = "README.md" diff --git a/digest/Cargo.toml b/digest/Cargo.toml index 261494a01..01be4dd81 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" +crypto-common = "=0.2.0-pre.1" # optional dependencies block-buffer = { version = "=0.11.0-pre", optional = true } diff --git a/universal-hash/Cargo.toml b/universal-hash/Cargo.toml index a2786ecc9..e1173e1f1 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" +crypto-common = "=0.2.0-pre.1" subtle = { version = "2.4", default-features = false } [features]