mirror of
https://github.com/RustCrypto/password-hashes.git
synced 2026-01-25 04:06:23 +00:00
Bump password-hash to v0.6.0-rc.9 (#821)
This commit is contained in:
8
Cargo.lock
generated
8
Cargo.lock
generated
@@ -317,9 +317,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "password-hash"
|
||||
version = "0.6.0-rc.8"
|
||||
version = "0.6.0-rc.9"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "f77af9403a6489b7b51f552693bd48d8e81a710c92d3d77648b203558578762d"
|
||||
checksum = "35d7cb93fb02e6e7941e867799a770d9eb67ce70751a84a9e826e92ecad6aadc"
|
||||
dependencies = [
|
||||
"getrandom",
|
||||
"phc",
|
||||
@@ -379,9 +379,9 @@ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
||||
|
||||
[[package]]
|
||||
name = "rand_core"
|
||||
version = "0.10.0-rc-3"
|
||||
version = "0.10.0-rc-5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "f66ee92bc15280519ef199a274fe0cafff4245d31bc39aaa31c011ad56cb1f05"
|
||||
checksum = "05a06e03bd1f2ae861ab9e7498b6c64ed3dadb9ce175c0464a2522a5f23c0045"
|
||||
|
||||
[[package]]
|
||||
name = "rayon"
|
||||
|
||||
@@ -22,7 +22,7 @@ blake2 = { version = "0.11.0-rc.3", default-features = false }
|
||||
|
||||
# optional dependencies
|
||||
rayon = { version = "1.7", optional = true }
|
||||
password-hash = { version = "0.6.0-rc.8", optional = true, features = ["phc"] }
|
||||
password-hash = { version = "0.6.0-rc.9", optional = true, features = ["phc"] }
|
||||
zeroize = { version = "1", default-features = false, optional = true }
|
||||
|
||||
[target.'cfg(any(target_arch = "x86", target_arch = "x86_64"))'.dependencies]
|
||||
|
||||
@@ -18,7 +18,7 @@ digest = { version = "0.11.0-rc.4", default-features = false }
|
||||
crypto-bigint = { version = "0.7.0-rc.9", default-features = false, features = ["hybrid-array"] }
|
||||
|
||||
# optional dependencies
|
||||
password-hash = { version = "0.6.0-rc.8", optional = true, default-features = false, features = ["phc"] }
|
||||
password-hash = { version = "0.6.0-rc.9", optional = true, default-features = false, features = ["phc"] }
|
||||
rayon = { version = "1.7", optional = true }
|
||||
zeroize = { version = "1", default-features = false, optional = true }
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@ rust-version = "1.85"
|
||||
|
||||
[dependencies]
|
||||
getrandom = { version = "0.4.0-rc.0", default-features = false }
|
||||
password-hash = { version = "0.6.0-rc.8", features = ["alloc", "getrandom", "phc"] }
|
||||
password-hash = { version = "0.6.0-rc.9", features = ["alloc", "getrandom", "phc"] }
|
||||
|
||||
# optional dependencies
|
||||
argon2 = { version = "0.6.0-rc.5", optional = true, default-features = false, features = ["alloc", "password-hash"] }
|
||||
|
||||
@@ -19,7 +19,7 @@ digest = { version = "0.11.0-rc.4", features = ["mac"] }
|
||||
# optional dependencies
|
||||
hmac = { version = "0.13.0-rc.3", optional = true, default-features = false }
|
||||
mcf = { version = "0.6.0-rc.3", optional = true, default-features = false, features = ["base64"] }
|
||||
password-hash = { version = "0.6.0-rc.8", default-features = false, optional = true }
|
||||
password-hash = { version = "0.6.0-rc.9", default-features = false, optional = true }
|
||||
sha1 = { version = "0.11.0-rc.3", default-features = false, optional = true }
|
||||
sha2 = { version = "0.11.0-rc.3", default-features = false, optional = true }
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ rayon = { version = "1.11", optional = true }
|
||||
|
||||
# optional dependencies
|
||||
mcf = { version = "0.6.0-rc.2", optional = true }
|
||||
password-hash = { version = "0.6.0-rc.8", optional = true, default-features = false }
|
||||
password-hash = { version = "0.6.0-rc.9", optional = true, default-features = false }
|
||||
subtle = { version = "2", optional = true, default-features = false }
|
||||
|
||||
[features]
|
||||
|
||||
@@ -23,7 +23,7 @@ base64ct = { version = "1.8", default-features = false, features = ["alloc"] }
|
||||
|
||||
# optional dependencies
|
||||
mcf = { version = "0.6.0-rc.2", optional = true, default-features = false, features = ["alloc", "base64"] }
|
||||
password-hash = { version = "0.6.0-rc.8", optional = true, default-features = false }
|
||||
password-hash = { version = "0.6.0-rc.9", optional = true, default-features = false }
|
||||
subtle = { version = "2", optional = true, default-features = false }
|
||||
|
||||
[features]
|
||||
|
||||
@@ -22,7 +22,7 @@ subtle = { version = "2", default-features = false }
|
||||
|
||||
# optional dependencies
|
||||
mcf = { version = "0.6.0-rc.2", optional = true, default-features = false, features = ["alloc", "base64"] }
|
||||
password-hash = { version = "0.6.0-rc.8", optional = true, default-features = false }
|
||||
password-hash = { version = "0.6.0-rc.9", optional = true, default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
hex-literal = "1"
|
||||
|
||||
Reference in New Issue
Block a user