Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions Cargo.lock

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

3 changes: 0 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,3 @@ opt-level = 2
argon2 = { path = "./argon2" }
pbkdf2 = { path = "./pbkdf2" }
scrypt = { path = "./scrypt" }

mcf = { git = "https://github.com/RustCrypto/formats" }
password-hash = { git = "https://github.com/RustCrypto/traits" }
2 changes: 1 addition & 1 deletion argon2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.4", optional = true, features = ["phc"] }
password-hash = { version = "0.6.0-rc.5", optional = true, features = ["phc"] }
phc = { version = "0.6.0-rc.0", optional = true, features = ["rand_core"] }
zeroize = { version = "1", default-features = false, optional = true }

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-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.4", optional = true, default-features = false, features = ["phc"] }
password-hash = { version = "0.6.0-rc.5", optional = true, default-features = false, features = ["phc"] }
phc = { version = "0.6.0-rc.0", optional = true, features = ["rand_core"] }
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 @@ -18,7 +18,7 @@ rust-version = "1.85"

[dependencies]
getrandom = { version = "0.3", default-features = false }
password-hash = { version = "0.6.0-rc.4", features = ["alloc", "phc"] }
password-hash = { version = "0.6.0-rc.5", features = ["alloc", "phc"] }
phc = { version = "0.6.0-rc.0", 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 @@ -18,7 +18,7 @@ digest = { version = "0.11.0-rc.4", features = ["mac"] }

# optional dependencies
hmac = { version = "0.13.0-rc.3", default-features = false, optional = true }
password-hash = { version = "0.6.0-rc.4", default-features = false, optional = true, features = ["phc"] }
password-hash = { version = "0.6.0-rc.5", default-features = false, optional = true, features = ["phc"] }
phc = { version = "0.6.0-rc.0", optional = true, features = ["rand_core"] }
sha1 = { version = "0.11.0-rc.3", default-features = false, optional = true }
sha2 = { version = "0.11.0-rc.3", default-features = false, optional = true }
Expand Down
2 changes: 1 addition & 1 deletion scrypt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ sha2 = { version = "0.11.0-rc.3", default-features = false }
rayon = { version = "1.11", optional = true }

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

[features]
Expand Down
2 changes: 1 addition & 1 deletion sha-crypt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ base64ct = { version = "1.8", default-features = false, features = ["alloc"] }

# optional dependencies
getrandom = { version = "0.3", optional = true, default-features = false }
mcf = { version = "=0.6.0-pre", optional = true, default-features = false, features = ["alloc", "base64"] }
mcf = { version = "0.6.0-rc.0", optional = true, default-features = false, features = ["alloc", "base64"] }
subtle = { version = "2", optional = true, default-features = false }

[features]
Expand Down
4 changes: 2 additions & 2 deletions yescrypt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ sha2 = { version = "0.11.0-rc.3", default-features = false }
subtle = { version = "2", default-features = false }

# optional dependencies
mcf = { version = "=0.6.0-pre", optional = true, default-features = false, features = ["alloc", "base64"] }
password-hash = { version = "0.6.0-rc.4", optional = true, default-features = false }
mcf = { version = "0.6.0-rc.0", optional = true, default-features = false, features = ["alloc", "base64"] }
password-hash = { version = "0.6.0-rc.5", optional = true, default-features = false }

[dev-dependencies]
hex-literal = "1"
Expand Down