Add initial setup and admin page
Some checks failed
Cargo Build & Test / Rust project - latest (stable) (push) Failing after 23s
Cargo Build & Test / Rust project - latest (beta) (push) Failing after 35s
Cargo Build & Test / Rust project - latest (nightly) (push) Failing after 33s

This commit is contained in:
2025-10-04 16:04:19 -05:00
parent bf5d3dc222
commit f859f8f34b
15 changed files with 926 additions and 44 deletions

View File

@@ -7,9 +7,11 @@ edition = "2024"
base64 = "0.22.1"
chrono = { version = "0.4.41", features = ["serde"] }
rocket = { path = "../rocket/core/lib", features = ["json", "tls", "secrets"] }
rocket_dyn_templates = { path = "../rocket/contrib/dyn_templates", features = ["tera"] }
rocket_db_pools = { path = "../rocket/contrib/db_pools/lib", features = ["sqlx_sqlite", "sqlx_macros"] }
sqlx = "*"
semver = { version = "1.0.26", features = ["serde"] }
password-hash = { version = "0.5.0", features = ["std"] }
argon2 = { version = "0.5.3", features = ["std"] }
lazy_static = "1.5.0"
either = "1.15.0"