implement account management
This commit is contained in:
parent
dbcac84794
commit
3e249e0a0d
8 changed files with 349 additions and 21 deletions
|
@ -9,6 +9,7 @@ axum = { version = "0.8.1", features = ["macros"] }
|
|||
chrono = "0.4.39"
|
||||
chrono-humanize = "0.2.3"
|
||||
maud = { version = "0.27.0", features = ["axum"] }
|
||||
nanoid = "0.4.0"
|
||||
serde = { version = "1.0.217", features = ["derive"] }
|
||||
serde_json = "1.0.138"
|
||||
serde_path_to_error = "0.1.16"
|
||||
|
@ -16,6 +17,9 @@ sqlx = { version = "0.8", features = [
|
|||
"runtime-tokio",
|
||||
"tls-rustls-ring-webpki",
|
||||
"sqlite",
|
||||
"migrate",
|
||||
] }
|
||||
tokio = { version = "1.43.0", features = ["full"] }
|
||||
tower-http = { version = "0.6.2", features = ["fs"] }
|
||||
tower-http = { version = "0.6.2", features = ["fs", "trace"] }
|
||||
tracing = "0.1.41"
|
||||
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue