feat: Implement JSON-backed database
This commit is contained in:
parent
44c083a8ef
commit
9933990fd3
12 changed files with 179 additions and 18 deletions
|
|
@ -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"] }
|
||||
|
|
|
|||
Loading…
Reference in a new issue