Added the functionality to insert a workout

This commit is contained in:
2025-07-15 13:53:05 +02:00
parent 9a8cd2ed86
commit d1029485d4
23 changed files with 847 additions and 136 deletions

View File

@@ -4,11 +4,14 @@ version = "0.1.0"
edition = "2024"
[dependencies]
axum = { version = "0.8", feature = [ "form" ] }
axum = { version = "0.8", features = [ "form" ] }
axum-extra = { version = "0.10", features = [ "form" ] }
tokio = { version = "1.45", features = ["full"] }
sqlx = { version = "0.8", features = ["runtime-tokio", "postgres", "tls-rustls", "migrate", "uuid"] }
maud = { version = "0.27", features = [ "axum" ] }
serde = "1.0"
serde_json = "1.0"
itertools = "0.14"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = [ "env-filter" ] }