From 2bab6fad3045ff93b7933883c8fb10e2816adb85 Mon Sep 17 00:00:00 2001 From: Arthur Gautier Date: Mon, 7 Oct 2024 12:48:30 -0700 Subject: [PATCH] pkcs5: 0.8.0-rc.2 --- Cargo.toml | 5 ----- pkcs5/Cargo.toml | 6 +++--- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index eb48d19da..45c428699 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -61,8 +61,3 @@ x509-ocsp = { path = "./x509-ocsp" } # Temp patches to external crates rsa = { git = "https://github.com/RustCrypto/RSA" } - -# https://github.com/RustCrypto/AEADs/pull/632 -aes-gcm = { git = "https://github.com/RustCrypto/AEADs.git" } -# https://github.com/RustCrypto/stream-ciphers/pull/368 -salsa20 = { git = "https://github.com/RustCrypto/stream-ciphers.git" } diff --git a/pkcs5/Cargo.toml b/pkcs5/Cargo.toml index f20d6d24e..c84622e78 100644 --- a/pkcs5/Cargo.toml +++ b/pkcs5/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pkcs5" -version = "0.8.0-rc.1" +version = "0.8.0-rc.2" description = """ Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #5: Password-Based Cryptography Specification Version 2.1 (RFC 8018) @@ -22,11 +22,11 @@ spki = { version = "0.8.0-rc.0" } # optional dependencies cbc = { version = "=0.2.0-pre.2", optional = true } aes = { version = "=0.9.0-pre.2", optional = true, default-features = false } -aes-gcm = { version = "=0.11.0-pre.1", optional = true, default-features = false, features = ["aes"] } +aes-gcm = { version = "=0.11.0-pre.2", optional = true, default-features = false, features = ["aes"] } des = { version = "=0.9.0-pre.2", optional = true, default-features = false } pbkdf2 = { version = "=0.13.0-pre.1", optional = true, default-features = false, features = ["hmac"] } rand_core = { version = "0.6.4", optional = true, default-features = false } -scrypt = { version = "=0.12.0-pre.1", optional = true, default-features = false } +scrypt = { version = "=0.12.0-pre.2", optional = true, default-features = false } sha1 = { version = "=0.11.0-pre.4", optional = true, default-features = false } sha2 = { version = "=0.11.0-pre.4", optional = true, default-features = false }