Skip to content

Commit

Permalink
bump password-hash to 0.6.0-pre.0 (#497)
Browse files Browse the repository at this point in the history
  • Loading branch information
baloo authored May 10, 2024
1 parent 7e940d9 commit 8abb1a7
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .readme/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2021"
publish = false

[dependencies]
password-hash = "0.5"
password-hash = "=0.6.0-pre.0"
argon2 = { path = "../argon2" }
pbkdf2 = { path = "../pbkdf2", features = ["simple"] }
scrypt = { path = "../scrypt" }
Expand Down
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,15 +20,15 @@ base64ct = "1"
blake2 = { version = "=0.11.0-pre.3", default-features = false }

# optional dependencies
password-hash = { version = "0.5", optional = true }
password-hash = { version = "=0.6.0-pre.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.5", features = ["rand_core"] }
password-hash = { version = "=0.6.0-pre.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 @@ -17,7 +17,7 @@ digest = { version = "=0.11.0-pre.8", default-features = false }
crypto-bigint = { version = "=0.6.0-pre.12", default-features = false, features = ["hybrid-array"] }

# optional dependencies
password-hash = { version = "0.5", default-features = false, optional = true }
password-hash = { version = "=0.6.0-pre.0", default-features = false, optional = true }
rayon = { version = "1.7", 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.72"

[dependencies]
password-hash = { version = "0.5", features = ["alloc", "rand_core"] }
password-hash = { version = "=0.6.0-pre.0", 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.11.0-pre.8", features = ["mac"] }

# optional dependencies
rayon = { version = "1.7", optional = true }
password-hash = { version = "0.5", default-features = false, optional = true, features = ["rand_core"] }
password-hash = { version = "=0.6.0-pre.0", default-features = false, optional = true, features = ["rand_core"] }
hmac = { version = "=0.13.0-pre.3", default-features = false, optional = true }
sha1 = { version = "=0.11.0-pre.3", default-features = false, optional = true }
sha2 = { version = "=0.11.0-pre.3", 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.11.0-pre", default-features = false }
sha2 = { version = "=0.11.0-pre.3", default-features = false }

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

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

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

0 comments on commit 8abb1a7

Please sign in to comment.