Add pbkdf2
All checks were successful
Push Workflows / rustfmt (push) Successful in 5s
Push Workflows / tailwind-build (push) Successful in 8s
Push Workflows / test (push) Successful in 40s
Push Workflows / clippy (push) Successful in 40s
Push Workflows / docs (push) Successful in 48s
Push Workflows / build (push) Successful in 1m26s
Push Workflows / nix-build (push) Successful in 5m14s

This commit is contained in:
2026-06-27 12:35:05 -04:00
parent f4f1e4b96f
commit ca8c96306f
2 changed files with 42 additions and 0 deletions

View File

@@ -17,6 +17,7 @@ diesel_migrations = { version = "2.3.2", optional = true }
dioxus = { version = "0.7.9", features = ["router", "fullstack"] }
dotenvy = { version = "0.15.7", optional = true }
lucide-dioxus = { version = "3.11.0", features = ["notifications"] }
pbkdf2 = { version = "0.13.0", optional = true, features = ["getrandom", "phc"] }
rand = "0.10.1"
serde = { version = "1.0.228", features = ["derive"] }
thiserror = "2.0.18"
@@ -33,6 +34,7 @@ server = [
"dep:diesel-async",
"dep:diesel_migrations",
"dep:dotenvy",
"dep:pbkdf2",
"dep:tokio",
]