chore(deps): Update rand

A couple indirect deps are still on rand_core 0.6 but we can deal
This commit is contained in:
Jade Ellis
2026-02-20 22:57:45 +00:00
parent efd879fcd8
commit b6c5991e1f
9 changed files with 406 additions and 198 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ fn init_argon() -> Argon2<'static> {
}
pub(super) fn password(password: &str) -> Result<String> {
let salt = SaltString::generate(rand::thread_rng());
let salt = SaltString::generate(rand_core::OsRng);
ARGON
.get_or_init(init_argon)
.hash_password(password.as_bytes(), &salt)