Add config

This commit is contained in:
2026-06-21 22:13:23 -04:00
parent 329bbb411b
commit 5f910d77ca
2 changed files with 239 additions and 1 deletions

View File

@@ -9,6 +9,7 @@ edition = "2024"
build = "src/build.rs"
[dependencies]
config = { version = "0.15.24", optional = true }
diesel = { version = "2.3.10", optional = true, features = [ "postgres" ] }
diesel_migrations = { version = "2.3.2", optional = true, features = [ "postgres" ] }
dioxus = { version = "0.7.9", features = ["router", "fullstack"] }
@@ -25,6 +26,7 @@ default = ["web"]
web = ["dioxus/web"]
server = [
"dioxus/server",
"dep:config",
"dep:diesel",
"dep:diesel_migrations",
"dep:dotenvy",