chore: scaffold axum server with in-memory CRUD, auth stub and tracing

This commit is contained in:
2026-04-19 16:03:04 +03:00
parent 132de93600
commit 90c9b9d6ff
10 changed files with 1756 additions and 13 deletions

View File

@@ -4,8 +4,15 @@ version = "0.1.0"
edition = "2024"
[dependencies]
axum = "0.8.8"
anyhow = "1.0.102"
axum = { version = "0.8.9", features = [] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
tokio = { version = "1.51.0", features = ["full"] }
tower-http = { version = "0.6.8", features = ["fs"] }
tower-cookies = "0.11.0"
tracing = "0.1.44"
tracing-subscriber = "0.3.23"
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
[dev-dependencies]
axum-test = "20.0.0"