From cb7e57c415a3310661b2a9e002656d4e7d14728a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Ml=C3=A1dek?= Date: Fri, 28 Jun 2024 11:57:29 +0200 Subject: [PATCH] build(db): fix missing password-hash feature --- db/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/Cargo.toml b/db/Cargo.toml index e643b8a..4e5b274 100644 --- a/db/Cargo.toml +++ b/db/Cargo.toml @@ -33,7 +33,7 @@ diesel = { version = "1.4", features = [ ] } diesel_migrations = "1.4" libsqlite3-sys = { version = "^0", features = ["bundled"] } -password-hash = "0.5.0" +password-hash = { version = "0.5.0", features = ["getrandom"] } argon2 = "0.5.3"