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
11 changes: 5 additions & 6 deletions Cargo.lock

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

5 changes: 5 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,8 @@ exclude = ["benches", "fuzz"]

[profile.dev]
opt-level = 2

[patch.crates-io]
argon2 = { path = "./argon2" }
pbkdf2 = { path = "./pbkdf2" }
scrypt = { path = "./scrypt" }
2 changes: 1 addition & 1 deletion argon2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "argon2"
version = "0.6.0-rc.3"
version = "0.6.0-rc.4"
description = """
Pure Rust implementation of the Argon2 password hashing function with support
for the Argon2d, Argon2i, and Argon2id algorithmic variants
Expand Down
3 changes: 1 addition & 2 deletions balloon-hash/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "balloon-hash"
version = "0.5.0-rc.1"
version = "0.5.0-rc.2"
description = "Pure Rust implementation of the Balloon password hashing function"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand All @@ -16,7 +16,6 @@ rust-version = "1.85"
[dependencies]
digest = { version = "0.11.0-rc.4", default-features = false }
crypto-bigint = { version = "0.7.0-rc.9", default-features = false, features = ["hybrid-array"] }
rand_core = { version = "0.10.0-rc-2", default-features = false }

# optional dependencies
password-hash = { version = "0.6.0-rc.4", optional = true, default-features = false, features = ["phc"] }
Expand Down
2 changes: 1 addition & 1 deletion bcrypt-pbkdf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ rust-version = "1.85"

[dependencies]
blowfish = { version = "0.10.0-rc.2", features = ["bcrypt"] }
pbkdf2 = { version = "0.13.0-rc.2", default-features = false, path = "../pbkdf2" }
pbkdf2 = { version = "0.13.0-rc.4", default-features = false }
sha2 = { version = "0.11.0-rc.3", default-features = false }

# optional features
Expand Down
8 changes: 4 additions & 4 deletions password-auth/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "password-auth"
version = "1.1.0-pre.2"
version = "1.1.0-pre.3"
description = """
Password authentication library with a focus on simplicity and ease-of-use,
including support for Argon2, PBKDF2, and scrypt password hashing algorithms
Expand All @@ -22,9 +22,9 @@ password-hash = { version = "0.6.0-rc.4", features = ["alloc", "phc"] }
phc = { version = "0.6.0-rc.0", features = ["getrandom"] }

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

[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
@@ -1,6 +1,6 @@
[package]
name = "pbkdf2"
version = "0.13.0-rc.3"
version = "0.13.0-rc.4"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
description = "Generic implementation of PBKDF2"
Expand Down
4 changes: 2 additions & 2 deletions scrypt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scrypt"
version = "0.12.0-rc.4"
version = "0.12.0-rc.5"
description = "Scrypt password-based key derivation function"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand All @@ -14,7 +14,7 @@ edition = "2024"
rust-version = "1.85"

[dependencies]
pbkdf2 = { version = "0.13.0-rc.2", path = "../pbkdf2" }
pbkdf2 = { version = "0.13.0-rc.4", path = "../pbkdf2" }
salsa20 = { version = "0.11.0-rc.2", default-features = false }
sha2 = { version = "0.11.0-rc.3", default-features = false }
rayon = { version = "1.11", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion yescrypt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ rust-version = "1.85"

[dependencies]
hmac = { version = "0.13.0-rc.3", default-features = false }
pbkdf2 = { version = "0.13.0-rc.2", path = "../pbkdf2" }
pbkdf2 = { version = "0.13.0-rc.4", default-features = false, features = ["hmac"] }
salsa20 = { version = "0.11.0-rc.2", default-features = false }
sha2 = { version = "0.11.0-rc.3", default-features = false }
subtle = { version = "2", default-features = false }
Expand Down