Skip to content

Commit 70e379e

Browse files
authored
Use pre.5 releases of hash crates (#577)
1 parent 1139eb7 commit 70e379e

File tree

9 files changed

+34
-25
lines changed

9 files changed

+34
-25
lines changed

Cargo.lock

+23-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

-5
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,6 @@ opt-level = 2
1919
[patch.crates-io]
2020
password-hash = { git = "https://github.com/RustCrypto/traits.git" }
2121

22-
blake2 = { git = "https://github.com/RustCrypto/hashes.git" }
23-
sha1 = { git = "https://github.com/RustCrypto/hashes.git" }
24-
sha2 = { git = "https://github.com/RustCrypto/hashes.git" }
25-
streebog = { git = "https://github.com/RustCrypto/hashes.git" }
26-
2722
hmac = { git = "https://github.com/RustCrypto/MACs.git" }
2823

2924
crypto-bigint = { git = "https://github.com/RustCrypto/crypto-bigint.git" }

argon2/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ rust-version = "1.85"
1818

1919
[dependencies]
2020
base64ct = "1"
21-
blake2 = { version = "=0.11.0-pre.4", default-features = false }
21+
blake2 = { version = "=0.11.0-pre.5", default-features = false }
2222

2323
# optional dependencies
2424
password-hash = { version = "0.6.0-rc.0", optional = true }

balloon-hash/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ zeroize = { version = "1", default-features = false, optional = true }
2525

2626
[dev-dependencies]
2727
hex-literal = "1"
28-
sha2 = "=0.11.0-pre.4"
28+
sha2 = "=0.11.0-pre.5"
2929

3030
[features]
3131
default = ["alloc", "password-hash", "rand"]

bcrypt-pbkdf/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ rust-version = "1.85"
1616
[dependencies]
1717
blowfish = { version = "=0.10.0-pre.2", features = ["bcrypt"] }
1818
pbkdf2 = { version = "=0.13.0-pre.1", default-features = false, path = "../pbkdf2" }
19-
sha2 = { version = "=0.11.0-pre.4", default-features = false }
19+
sha2 = { version = "=0.11.0-pre.5", default-features = false }
2020
zeroize = { version = "1", default-features = false, optional = true }
2121

2222
[dev-dependencies]

pbkdf2/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ digest = { version = "=0.11.0-pre.10", features = ["mac"] }
2020
rayon = { version = "1.7", optional = true }
2121
password-hash = { version = "0.6.0-rc.0", default-features = false, optional = true, features = ["rand_core"] }
2222
hmac = { version = "=0.13.0-pre.4", default-features = false, optional = true }
23-
sha1 = { version = "=0.11.0-pre.4", default-features = false, optional = true }
24-
sha2 = { version = "=0.11.0-pre.4", default-features = false, optional = true }
23+
sha1 = { version = "=0.11.0-pre.5", default-features = false, optional = true }
24+
sha2 = { version = "=0.11.0-pre.5", default-features = false, optional = true }
2525

2626
[dev-dependencies]
2727
hmac = "=0.13.0-pre.4"
2828
hex-literal = "1"
29-
sha1 = "=0.11.0-pre.4"
30-
sha2 = "=0.11.0-pre.4"
31-
streebog = "=0.11.0-pre.4"
29+
sha1 = "=0.11.0-pre.5"
30+
sha2 = "=0.11.0-pre.5"
31+
streebog = "=0.11.0-pre.5"
3232

3333
[features]
3434
default = ["hmac"]

scrypt/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ rust-version = "1.85"
1616
[dependencies]
1717
pbkdf2 = { version = "=0.13.0-pre.1", path = "../pbkdf2" }
1818
salsa20 = { version = "=0.11.0-pre.2", default-features = false }
19-
sha2 = { version = "=0.11.0-pre.4", default-features = false }
19+
sha2 = { version = "=0.11.0-pre.5", default-features = false }
2020

2121
# optional dependencies
2222
password-hash = { version = "0.6.0-rc.0", default-features = false, features = ["rand_core"], optional = true }

sha-crypt/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ edition = "2024"
1717
rust-version = "1.85"
1818

1919
[dependencies]
20-
sha2 = { version = "=0.11.0-pre.4", default-features = false }
20+
sha2 = { version = "=0.11.0-pre.5", default-features = false }
2121

2222
# optional dependencies
2323
rand = { version = "0.9", optional = true }

yescrypt/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ libc = "0.2"
1818
hmac = { version = "0.13.0-pre.4", default-features = false }
1919
pbkdf2 = { version = "=0.13.0-pre.1", path = "../pbkdf2" }
2020
salsa20 = { version = "=0.11.0-pre.2", default-features = false }
21-
sha2 = { version = "=0.11.0-pre.4", default-features = false }
21+
sha2 = { version = "=0.11.0-pre.5", default-features = false }
2222

2323
[dev-dependencies]
2424
hex-literal = "1"

0 commit comments

Comments
 (0)