WIP: feat: add user details update
This commit is contained in:
parent
8285ca230c
commit
d908586dfa
27 changed files with 871 additions and 38 deletions
|
|
@ -1,3 +1,8 @@
|
|||
cargo-features = ["codegen-backend"]
|
||||
|
||||
[profile.dev]
|
||||
codegen-backend = "cranelift"
|
||||
|
||||
[package]
|
||||
name = "minauthator"
|
||||
description = "Identity provider and OAuth2 server for an small-scale organization."
|
||||
|
|
@ -32,7 +37,7 @@ sqlx = { version = "0.7.4", features = ["sqlite", "runtime-tokio", "chrono", "uu
|
|||
redis = { version = "0.27.3", default-features = false, features = ["acl"] }
|
||||
|
||||
# Web
|
||||
axum = { version = "0.7.7", features = ["json"] }
|
||||
axum = { version = "0.7.7", features = ["json", "multipart"] }
|
||||
axum-template = { version = "2.4.0", features = ["minijinja"] }
|
||||
minijinja = { version = "2.1", features = ["builtins"] }
|
||||
# to make work the static assets server
|
||||
|
|
@ -48,6 +53,8 @@ dotenvy = "0.15.7"
|
|||
frank_jwt = "3.1.3"
|
||||
jsonwebtoken = "9.3.0"
|
||||
axum-extra = { version = "0.9.4", features = ["cookie"] }
|
||||
axum_typed_multipart = "0.13.1"
|
||||
base64 = "0.22.1"
|
||||
|
||||
[build-dependencies]
|
||||
minijinja-embed = "2.3.1"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue