Skip to content

Commit b35d361

Browse files
authored
Bump password-hash dependency to v0.6 (#848)
Release PR: RustCrypto/traits#2338
1 parent 755a7ee commit b35d361

8 files changed

Lines changed: 23 additions & 14 deletions

File tree

Cargo.lock

Lines changed: 16 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

argon2/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ blake2 = { version = "0.11.0-rc.5", default-features = false }
2323
# optional dependencies
2424
kdf = { version = "0.1", optional = true }
2525
rayon = { version = "1.7", optional = true }
26-
password-hash = { version = "0.6.0-rc.12", optional = true, features = ["phc"] }
26+
password-hash = { version = "0.6", optional = true, features = ["phc"] }
2727
zeroize = { version = "1", default-features = false, optional = true }
2828

2929
[target.'cfg(any(target_arch = "x86", target_arch = "x86_64"))'.dependencies]

balloon-hash/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ crypto-bigint = { version = "0.7.0-rc.25", default-features = false, features =
1919

2020
# optional dependencies
2121
kdf = { version = "0.1", optional = true }
22-
password-hash = { version = "0.6.0-rc.12", optional = true, default-features = false, features = ["phc"] }
22+
password-hash = { version = "0.6", optional = true, default-features = false, features = ["phc"] }
2323
rayon = { version = "1.7", optional = true }
2424
zeroize = { version = "1", default-features = false, optional = true }
2525

password-auth/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ rust-version = "1.85"
1818

1919
[dependencies]
2020
getrandom = { version = "0.4.0-rc.0", default-features = false }
21-
password-hash = { version = "0.6.0-rc.12", features = ["alloc", "getrandom", "phc"] }
21+
password-hash = { version = "0.6", features = ["alloc", "getrandom", "phc"] }
2222

2323
# optional dependencies
2424
argon2 = { version = "0.6.0-rc.7", optional = true, default-features = false, features = ["alloc", "password-hash"] }

pbkdf2/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ digest = { version = "0.11.0-rc.4", features = ["mac"] }
2020
hmac = { version = "0.13.0-rc.5", optional = true, default-features = false }
2121
kdf = { version = "0.1", optional = true }
2222
mcf = { version = "0.6", optional = true, default-features = false, features = ["base64"] }
23-
password-hash = { version = "0.6.0-rc.12", default-features = false, optional = true }
23+
password-hash = { version = "0.6", default-features = false, optional = true }
2424
sha1 = { version = "0.11.0-rc.5", default-features = false, optional = true }
2525
sha2 = { version = "0.11.0-rc.5", default-features = false, optional = true }
2626

scrypt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ rayon = { version = "1.11", optional = true }
2424
ctutils = { version = "0.4", optional = true }
2525
kdf = { version = "0.1", optional = true }
2626
mcf = { version = "0.6", optional = true }
27-
password-hash = { version = "0.6.0-rc.12", optional = true, default-features = false }
27+
password-hash = { version = "0.6", optional = true, default-features = false }
2828

2929
[features]
3030
alloc = ["password-hash?/alloc"]

sha-crypt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ base64ct = { version = "1.8", default-features = false, features = ["alloc"] }
2424
# optional dependencies
2525
ctutils = { version = "0.4", optional = true }
2626
mcf = { version = "0.6", optional = true, default-features = false, features = ["alloc", "base64"] }
27-
password-hash = { version = "0.6.0-rc.12", optional = true, default-features = false }
27+
password-hash = { version = "0.6", optional = true, default-features = false }
2828

2929
[features]
3030
default = ["password-hash"]

yescrypt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ sha2 = { version = "0.11.0-rc.5", default-features = false }
2323
# optional dependencies
2424
kdf = { version = "0.1", optional = true }
2525
mcf = { version = "0.6", optional = true, default-features = false, features = ["alloc", "base64"] }
26-
password-hash = { version = "0.6.0-rc.12", optional = true, default-features = false }
26+
password-hash = { version = "0.6", optional = true, default-features = false }
2727

2828
[dev-dependencies]
2929
hex-literal = "1"

0 commit comments

Comments
 (0)