initialized repository

This commit is contained in:
2025-07-08 19:22:23 +02:00
commit 72c3d91c7e
17 changed files with 3670 additions and 0 deletions

17
Cargo.toml Normal file
View File

@@ -0,0 +1,17 @@
[package]
name = "workout"
version = "0.1.0"
edition = "2024"
[dependencies]
axum = { version = "0.8", feature = [ "form" ] }
tokio = { version = "1.45", features = ["full"] }
sqlx = { version = "0.8", features = ["runtime-tokio", "postgres", "tls-rustls", "migrate"] }
maud = { version = "0.27", features = [ "axum" ] }
serde = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = [ "env-filter" ] }
tower = { version = "0.5.2", features = ["util"] }
tower-http = { version = "0.6.1", features = ["fs", "trace"] }