From 62a86f9af7b1368f69f6c58329cfc96c2cb1b91f Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Mon, 30 Mar 2026 16:54:11 -0600 Subject: [PATCH] Bump `salsa20` dependency to v0.11 Release PR: RustCrypto/stream-ciphers#553 --- Cargo.lock | 4 ++-- scrypt/Cargo.toml | 2 +- yescrypt/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 182a1fec..279989d7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -535,9 +535,9 @@ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" [[package]] name = "salsa20" -version = "0.11.0-rc.2" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06522a356e94a02a1f83d699a1d84dd2ba613fbb20b211153bd5a75de9ccdc92" +checksum = "2f874456e72520ff1375a06c588eaf074b0f01f9e9e1aada45bd9b7954a6e42c" dependencies = [ "cfg-if", "cipher", diff --git a/scrypt/Cargo.toml b/scrypt/Cargo.toml index dcd95616..1eee49d8 100644 --- a/scrypt/Cargo.toml +++ b/scrypt/Cargo.toml @@ -16,7 +16,7 @@ rust-version = "1.85" [dependencies] cfg-if = "1.0" pbkdf2 = { version = "0.13.0-rc.10", path = "../pbkdf2" } -salsa20 = { version = "0.11.0-rc.2", default-features = false } +salsa20 = { version = "0.11", default-features = false } sha2 = { version = "0.11", default-features = false } rayon = { version = "1.11", optional = true } diff --git a/yescrypt/Cargo.toml b/yescrypt/Cargo.toml index 8e9d4699..c03cac80 100644 --- a/yescrypt/Cargo.toml +++ b/yescrypt/Cargo.toml @@ -17,7 +17,7 @@ rust-version = "1.85" ctutils = "0.4" hmac = { version = "0.13", default-features = false } pbkdf2 = { version = "0.13.0-rc.10", default-features = false, features = ["hmac"] } -salsa20 = { version = "0.11.0-rc.2", default-features = false } +salsa20 = { version = "0.11", default-features = false } sha2 = { version = "0.11", default-features = false } # optional dependencies