Skip to content

Commit

Permalink
pkcs5: 0.8.0-rc.2
Browse files Browse the repository at this point in the history
  • Loading branch information
baloo committed Oct 7, 2024
1 parent d41859f commit 2bab6fa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
5 changes: 0 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
6 changes: 3 additions & 3 deletions pkcs5/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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)
Expand All @@ -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 }

Expand Down

0 comments on commit 2bab6fa

Please sign in to comment.