feat: Implement JSON-backed database

This commit is contained in:
selfhoster selfhoster 2026-09-19 14:17:41 +02:00
commit 9933990fd3
12 changed files with 179 additions and 18 deletions

View file

@ -7,7 +7,7 @@ edition = "2024"
argh = "0.1.19"
axum = { version = "0.8.9", optional = true, features = ["macros"] }
axum-extra = { version = "0.12.6", features = ["cookie"], optional = true }
camino = "1.2.5"
camino = { version = "1.2.5", features = ["serde1"] }
dn_escape = { path = "vendor/dn_escape" }
futures-util = { version = "0.3.34", features = ["sink"] }
http = { version = "1.5.0", optional = true }
@ -15,6 +15,7 @@ ldap3_proto = "0.8.1"
minijinja = { version = "2.24.0", optional = true }
minijinja-embed = { version = "2.24.0", optional = true }
serde = { version = "1.0.229", features = ["derive"] }
serde_json = "1.0.151"
static-serve = { version = "0.6.3", optional = true }
tokio = { version = "1.53.1", features = ["macros", "net", "rt", "time", "sync"] }
tokio-util = { version = "0.7.19", features = ["codec"] }