From 629d323d33b91ce952a195998de43090f12687ae Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Tue, 29 Dec 2020 17:55:42 -0800 Subject: [PATCH] cipher v0.3.0-pre.2 (#438) --- Cargo.lock | 2 +- cipher/Cargo.toml | 2 +- crypto-mac/Cargo.toml | 2 +- crypto/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bbe5421f8..9be4836fe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -85,7 +85,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "cipher" -version = "0.3.0-pre" +version = "0.3.0-pre.2" dependencies = [ "blobby 0.3.0", "generic-array 0.14.4", diff --git a/cipher/Cargo.toml b/cipher/Cargo.toml index 9c37e7aa6..75f5980b6 100644 --- a/cipher/Cargo.toml +++ b/cipher/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "cipher" description = "Traits for describing block ciphers and stream ciphers" -version = "0.3.0-pre" +version = "0.3.0-pre.2" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0" readme = "README.md" diff --git a/crypto-mac/Cargo.toml b/crypto-mac/Cargo.toml index 7be37f044..70b1f833f 100644 --- a/crypto-mac/Cargo.toml +++ b/crypto-mac/Cargo.toml @@ -13,7 +13,7 @@ categories = ["cryptography", "no-std"] [dependencies] generic-array = "0.14" -cipher = { version = "=0.3.0-pre", optional = true, path = "../cipher" } +cipher = { version = "=0.3.0-pre.2", optional = true, path = "../cipher" } subtle = { version = "2", default-features = false } blobby = { version = "0.3", optional = true } diff --git a/crypto/Cargo.toml b/crypto/Cargo.toml index f0f274fcb..56f9a6844 100644 --- a/crypto/Cargo.toml +++ b/crypto/Cargo.toml @@ -13,7 +13,7 @@ edition = "2018" [dependencies] aead = { version = "0.3", optional = true, path = "../aead" } -cipher = { version = "=0.3.0-pre", optional = true, path = "../cipher" } +cipher = { version = "=0.3.0-pre.2", optional = true, path = "../cipher" } digest = { version = "0.9", optional = true, path = "../digest" } elliptic-curve = { version = "0.8", optional = true, path = "../elliptic-curve" } mac = { version = "=0.11.0-pre", package = "crypto-mac", optional = true, path = "../crypto-mac" }