Create initial database model.

This commit is contained in:
Drew 2025-08-22 19:41:19 -07:00
parent 3a7d28030d
commit e188fec99c
8 changed files with 621 additions and 4 deletions

View file

@ -4,8 +4,13 @@ version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0.99"
axum = "0.8.4"
sqlx = "0.8.6"
chrono = "0.4.41"
serde = "1.0.219"
sqlx = { version = "0.8.6", features = ["sqlite", "runtime-tokio", "uuid", "chrono"] }
tokio = { version = "1.47.1", features = ["rt-multi-thread", "tracing"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
uuid = { version = "1.18.0", features = ["v4"] }