From 87b79aabc63920d0fb6990ffcf6cd10f0c503e25 Mon Sep 17 00:00:00 2001 From: Arthur Gautier Date: Mon, 7 Oct 2024 18:51:32 +0000 Subject: [PATCH] chacha20+salsa20: cut pre.2 prereleases (#371) Cuts the following prereleases: - `chacha20` v0.10.0-pre.2 - `salsa20` v0.11.0-pre.2 --- Cargo.lock | 4 ++-- chacha20/Cargo.toml | 2 +- salsa20/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 37bc2f4..3e29432 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -25,7 +25,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "chacha20" -version = "0.10.0-pre.1" +version = "0.10.0-pre.2" dependencies = [ "cfg-if", "cipher", @@ -202,7 +202,7 @@ checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1" [[package]] name = "salsa20" -version = "0.11.0-pre.1" +version = "0.11.0-pre.2" dependencies = [ "cfg-if", "cipher", diff --git a/chacha20/Cargo.toml b/chacha20/Cargo.toml index ff30f23..a061739 100644 --- a/chacha20/Cargo.toml +++ b/chacha20/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chacha20" -version = "0.10.0-pre.1" +version = "0.10.0-pre.2" description = """ The ChaCha20 stream cipher (RFC 8439) implemented in pure Rust using traits from the RustCrypto `cipher` crate, with optional architecture-specific diff --git a/salsa20/Cargo.toml b/salsa20/Cargo.toml index 675ef05..e4c96d6 100644 --- a/salsa20/Cargo.toml +++ b/salsa20/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "salsa20" -version = "0.11.0-pre.1" +version = "0.11.0-pre.2" description = "Salsa20 Stream Cipher" authors = ["RustCrypto Developers"] license = "MIT OR Apache-2.0"