Skip to content

Commit

Permalink
Bump password-hash to v0.6.0-pre (#1461)
Browse files Browse the repository at this point in the history
This is not-for-release, but to signal that we are about to begin making
breaking changes.

Notably it would be nice to finally land #1352, which adds `ShaCrypt`
support and makes the `Encoding` enum `non_exhaustive` so we could
potentially add additional encodings in the future without it being a
breaking change.
  • Loading branch information
tarcieri authored Jan 8, 2024
1 parent a005ddb commit cbfdf1d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
13 changes: 12 additions & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ aead = { version = "0.5", optional = true }
cipher = { version = "0.4", optional = true }
digest = { version = "0.10", optional = true, features = ["mac"] }
elliptic-curve = { version = "0.13", optional = true, path = "../elliptic-curve" }
password-hash = { version = "0.5", optional = true, path = "../password-hash" }
password-hash = { version = "0.5", optional = true }
signature = { version = "2", optional = true, default-features = false }
universal-hash = { version = "0.5", optional = true }

Expand Down
2 changes: 1 addition & 1 deletion password-hash/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Traits which describe the functionality of password hashing algorithms,
as well as a `no_std`-friendly implementation of the PHC string format
(a well-defined subset of the Modular Crypt Format a.k.a. MCF)
"""
version = "0.5.0"
version = "0.6.0-pre"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
readme = "README.md"
Expand Down

0 comments on commit cbfdf1d

Please sign in to comment.