Start work on login form

This commit is contained in:
selfhoster selfhoster 2023-08-22 17:00:55 +02:00
commit 1667c3295b
4 changed files with 20 additions and 9 deletions

View file

@ -10,7 +10,7 @@ futures = "0.3"
tower = "0.4"
tokio = { version = "1", features = [ "full" ] }
hyper = { version = "0.14", features = [ "full" ] }
axum = { version = "0.6", features = [ "headers", "http2", "macros", "tracing" ] }
axum = { version = "0.6", features = [ "headers", "http2", "macros", "tracing", "json" ] }
clap = { version = "4.3", features = [ "derive" ] }
snafu = "0.7"
log = "0.4"
@ -20,7 +20,7 @@ env_logger = "0.10"
ring = "0.16"
hex = "0.4"
chrono = { version = "0.4", features = [ "serde" ] }
yunohost-api = { path = "yunohost-api" }
yunohost-api = { path = "yunohost-api", features = [ "axum" ] }
axum_typed_multipart = "0.8"
async-trait = "0.1"
serde = { version = "1", features = [ "derive" ] }