diff --git a/crates/ogar-auth/Cargo.toml b/crates/ogar-auth/Cargo.toml index 06b9f7d..7c3f038 100644 --- a/crates/ogar-auth/Cargo.toml +++ b/crates/ogar-auth/Cargo.toml @@ -40,9 +40,9 @@ getrandom = "0.2" # Argon2id PHC hash+verify — the login-credential path. Password hashing, not # encryption, so this crate pins argon2 itself rather than going through # `ogar-encryption`. argon2 0.6 from the AdaWorldAPI/password-hashes fork -# (`ndarray-simd` = block compression on `ndarray::simd::U64x8`); branch pin -# until password-hashes#1 merges. -argon2 = { git = "https://github.com/AdaWorldAPI/password-hashes", branch = "claude/argon2-ndarray-simd", default-features = false, features = ["alloc", "password-hash", "ndarray-simd"] } +# (`ndarray-simd` = block compression on `ndarray::simd::U64x8`; +# password-hashes#1). +argon2 = { git = "https://github.com/AdaWorldAPI/password-hashes", branch = "master", default-features = false, features = ["alloc", "password-hash", "ndarray-simd"] } [target.'cfg(target_arch = "wasm32")'.dependencies] getrandom = { version = "0.2", features = ["js"] } diff --git a/crates/ogar-encryption/Cargo.toml b/crates/ogar-encryption/Cargo.toml index 34ea44a..4b9bb64 100644 --- a/crates/ogar-encryption/Cargo.toml +++ b/crates/ogar-encryption/Cargo.toml @@ -14,9 +14,9 @@ encryption = { git = "https://github.com/AdaWorldAPI/ndarray", branch = "master" # Not in ndarray: `kdf` and `envelope` run here on argon2 0.6 # from the AdaWorldAPI/password-hashes fork. `ndarray-simd` puts the block -# compression on `ndarray::simd::U64x8` (compile-time dispatch, no `unsafe`). -# Branch pin until password-hashes#1 merges. -argon2 = { git = "https://github.com/AdaWorldAPI/password-hashes", branch = "claude/argon2-ndarray-simd", default-features = false, features = ["alloc", "ndarray-simd"] } +# compression on `ndarray::simd::U64x8` (compile-time dispatch, no `unsafe`; +# password-hashes#1). +argon2 = { git = "https://github.com/AdaWorldAPI/password-hashes", branch = "master", default-features = false, features = ["alloc", "ndarray-simd"] } zeroize = { version = "1", features = ["derive"] } getrandom = "0.2"