From 8146b5ba09fed0101d50a045af4e2eeef552b278 Mon Sep 17 00:00:00 2001 From: Arthur Gautier Date: Sun, 3 Mar 2024 19:57:01 -0800 Subject: [PATCH] Bump `cipher` to `0.5.0-pre.4` --- Cargo.lock | 4 ++-- chacha20/Cargo.toml | 4 ++-- hc-256/Cargo.toml | 4 ++-- rabbit/Cargo.toml | 4 ++-- rc4/Cargo.toml | 2 +- salsa20/Cargo.toml | 4 ++-- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5696b86..748854e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -36,9 +36,9 @@ dependencies = [ [[package]] name = "cipher" -version = "0.5.0-pre.3" +version = "0.5.0-pre.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4edc902a09138d9a0d02800f2c214f15295555e4d126bf4b312ea6f3bce7ae46" +checksum = "84fba98785cecd0e308818a87c817576a40f99d8bab6405bf422bacd3efb6c1f" dependencies = [ "blobby", "crypto-common", diff --git a/chacha20/Cargo.toml b/chacha20/Cargo.toml index 0cee2cb..2954f0f 100644 --- a/chacha20/Cargo.toml +++ b/chacha20/Cargo.toml @@ -20,13 +20,13 @@ categories = ["cryptography", "no-std"] [dependencies] cfg-if = "1" -cipher = "=0.5.0-pre.3" +cipher = "0.5.0-pre.4" [target.'cfg(any(target_arch = "x86_64", target_arch = "x86"))'.dependencies] cpufeatures = "0.2" [dev-dependencies] -cipher = { version = "=0.5.0-pre.3", features = ["dev"] } +cipher = { version = "0.5.0-pre.4", features = ["dev"] } hex-literal = "0.4" [features] diff --git a/hc-256/Cargo.toml b/hc-256/Cargo.toml index c35de8f..26decd4 100644 --- a/hc-256/Cargo.toml +++ b/hc-256/Cargo.toml @@ -13,10 +13,10 @@ keywords = ["crypto", "stream-cipher", "trait"] categories = ["cryptography", "no-std"] [dependencies] -cipher = "=0.5.0-pre.3" +cipher = "0.5.0-pre.4" [dev-dependencies] -cipher = { version = "=0.5.0-pre.3", features = ["dev"] } +cipher = { version = "0.5.0-pre.4", features = ["dev"] } hex-literal = "0.4" [features] diff --git a/rabbit/Cargo.toml b/rabbit/Cargo.toml index 9673b71..52d65f6 100644 --- a/rabbit/Cargo.toml +++ b/rabbit/Cargo.toml @@ -13,10 +13,10 @@ keywords = ["crypto", "rabbit", "stream-cipher", "trait"] categories = ["cryptography", "no-std"] [dependencies] -cipher = "=0.5.0-pre.3" +cipher = "0.5.0-pre.4" [dev-dependencies] -cipher = { version = "=0.5.0-pre.3", features = ["dev"] } +cipher = { version = "0.5.0-pre.4", features = ["dev"] } hex-literal = "0.4" [features] diff --git a/rc4/Cargo.toml b/rc4/Cargo.toml index 56d08aa..8a4b6fe 100644 --- a/rc4/Cargo.toml +++ b/rc4/Cargo.toml @@ -13,7 +13,7 @@ keywords = ["arc4", "arcfour", "crypto", "stream-cipher", "trait"] categories = ["cryptography", "no-std"] [dependencies] -cipher = "=0.5.0-pre.3" +cipher = "0.5.0-pre.4" [dev-dependencies] hex-literal = "0.4" diff --git a/salsa20/Cargo.toml b/salsa20/Cargo.toml index d6737d9..6847678 100644 --- a/salsa20/Cargo.toml +++ b/salsa20/Cargo.toml @@ -14,10 +14,10 @@ categories = ["cryptography", "no-std"] [dependencies] cfg-if = "1" -cipher = "=0.5.0-pre.3" +cipher = "0.5.0-pre.4" [dev-dependencies] -cipher = { version = "=0.5.0-pre.3", features = ["dev"] } +cipher = { version = "0.5.0-pre.4", features = ["dev"] } hex-literal = "0.4" [features]