Skip to content

Commit

Permalink
Bump password-hash dependency to v0.6.0-rc.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri committed Jul 27, 2024
1 parent 985914d commit 8ab6e3e
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 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 @@ -21,15 +21,15 @@ base64ct = "1"
blake2 = { version = "=0.11.0-pre.4", default-features = false }

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

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

[dev-dependencies]
hex-literal = "0.4"
password-hash = { version = "=0.6.0-pre.0", features = ["rand_core"] }
password-hash = { version = "0.6.0-rc.0", 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 @@ -18,7 +18,7 @@ digest = { version = "=0.11.0-pre.9", default-features = false }
crypto-bigint = { version = "0.6.0-rc.2", default-features = false, features = ["hybrid-array"] }

# optional dependencies
password-hash = { version = "=0.6.0-pre.0", default-features = false, optional = true }
password-hash = { version = "0.6.0-rc.0", default-features = false, optional = true }
rayon = { version = "1.7", optional = true }
zeroize = { version = "1", default-features = false, optional = true }

Expand Down
4 changes: 2 additions & 2 deletions password-auth/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ edition = "2021"
rust-version = "1.72"

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

# optional dependencies
argon2 = { version = "=0.6.0-pre.0", optional = true, default-features = false, features = ["alloc", "simple"], path = "../argon2" }
pbkdf2 = { version = "=0.13.0-pre.0", optional = true, default-features = false, features = ["simple"], path = "../pbkdf2" }
scrypt = { version = "=0.12.0-pre.0", optional = true, default-features = false, features = ["simple"], path = "../scrypt" }
scrypt = { version = "=0.12.0-pre.0", optional = true, default-features = false, features = ["simple"], path = "../scrypt" }

[features]
default = ["argon2", "std"]
Expand Down
2 changes: 1 addition & 1 deletion pbkdf2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ digest = { version = "=0.11.0-pre.9", features = ["mac"] }

# optional dependencies
rayon = { version = "1.7", optional = true }
password-hash = { version = "=0.6.0-pre.0", default-features = false, optional = true, features = ["rand_core"] }
password-hash = { version = "0.6.0-rc.0", default-features = false, optional = true, features = ["rand_core"] }
hmac = { version = "=0.13.0-pre.4", default-features = false, optional = true }
sha1 = { version = "=0.11.0-pre.4", default-features = false, optional = true }
sha2 = { version = "=0.11.0-pre.4", 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 @@ -19,10 +19,10 @@ salsa20 = { version = "=0.11.0-pre.1", default-features = false }
sha2 = { version = "=0.11.0-pre.4", default-features = false }

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

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

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

0 comments on commit 8ab6e3e

Please sign in to comment.