Skip to content

Commit

Permalink
Bump password-hash to v0.5 (#383)
Browse files Browse the repository at this point in the history
Release notes: RustCrypto/traits#1271
  • Loading branch information
tarcieri committed Mar 4, 2023
1 parent 7de239d commit dc8b4b9
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions argon2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ base64ct = "1"
blake2 = { version = "0.10.6", default-features = false }

# optional dependencies
password-hash = { version = "=0.5.0-rc.0", optional = true }
password-hash = { version = "0.5", optional = true }
zeroize = { version = "1", default-features = false, optional = true }

[dev-dependencies]
hex-literal = "0.3"
password-hash = { version = "=0.5.0-rc.0", features = ["rand_core"] }
password-hash = { version = "0.5", features = ["rand_core"] }

[features]
default = ["alloc", "password-hash", "rand"]
Expand Down
2 changes: 1 addition & 1 deletion balloon-hash/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ digest = { version = "0.10.6", default-features = false }
crypto-bigint = { version = "0.5", default-features = false, features = ["generic-array"] }

# optional dependencies
password-hash = { version = "=0.5.0-rc.0", default-features = false, optional = true }
password-hash = { version = "0.5", default-features = false, optional = true }
rayon = { version = "1.5", optional = true }
zeroize = { version = "1", default-features = false, optional = true }

Expand Down
2 changes: 1 addition & 1 deletion password-auth/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ edition = "2021"
rust-version = "1.60"

[dependencies]
password-hash = { version = "=0.5.0-rc.0", features = ["alloc", "rand_core"] }
password-hash = { version = "0.5", features = ["alloc", "rand_core"] }
rand_core = { version = "0.6", features = ["getrandom"] }

# optional dependencies
Expand Down
2 changes: 1 addition & 1 deletion pbkdf2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ digest = { version = "0.10.6", features = ["mac"] }

# optional dependencies
rayon = { version = "1.5", optional = true }
password-hash = { version = "=0.5.0-rc.0", default-features = false, optional = true, features = ["rand_core"] }
password-hash = { version = "0.5", default-features = false, optional = true, features = ["rand_core"] }
hmac = { version = "0.12", default-features = false, optional = true }
sha1 = { version = "0.10", default-features = false, optional = true }
sha2 = { version = "0.10", default-features = false, optional = true }
Expand Down
4 changes: 2 additions & 2 deletions scrypt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ salsa20 = { version = "0.10.2", default-features = false }
sha2 = { version = "0.10", default-features = false }

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

[dev-dependencies]
password-hash = { version = "=0.5.0-rc.0", features = ["rand_core"] }
password-hash = { version = "0.5", features = ["rand_core"] }

[features]
default = ["simple", "std"]
Expand Down

0 comments on commit dc8b4b9

Please sign in to comment.