Add serde
All checks were successful
Push Workflows / rustfmt (push) Successful in 5s
Push Workflows / tailwind-build (push) Successful in 5s
Push Workflows / clippy (push) Successful in 22s
Push Workflows / docs (push) Successful in 26s
Push Workflows / test (push) Successful in 28s
Push Workflows / build (push) Successful in 52s
Push Workflows / nix-build (push) Successful in 4m54s

This commit is contained in:
2026-06-18 22:06:59 -04:00
parent c5437ec7b3
commit 836fe1adcd
2 changed files with 2 additions and 0 deletions

1
Cargo.lock generated
View File

@@ -2060,6 +2060,7 @@ dependencies = [
"dioxus", "dioxus",
"dotenvy", "dotenvy",
"lucide-dioxus", "lucide-dioxus",
"serde",
"thiserror 2.0.18", "thiserror 2.0.18",
"tracing", "tracing",
] ]

View File

@@ -11,6 +11,7 @@ diesel_migrations = { version = "2.3.2", optional = true, features = [ "postgres
dioxus = { version = "0.7.9", features = ["router", "fullstack"] } dioxus = { version = "0.7.9", features = ["router", "fullstack"] }
dotenvy = { version = "0.15.7", optional = true } dotenvy = { version = "0.15.7", optional = true }
lucide-dioxus = "3.11.0" lucide-dioxus = "3.11.0"
serde = { version = "1.0.228", features = ["derive"] }
thiserror = "2.0.18" thiserror = "2.0.18"
tracing = "0.1.44" tracing = "0.1.44"