initial commit

This commit is contained in:
arrelin
2026-03-06 15:31:24 +03:00
commit 5051b8e9de
38 changed files with 6868 additions and 0 deletions

17
backend/Cargo.toml Normal file
View File

@@ -0,0 +1,17 @@
[package]
name = "backend"
version = "0.1.0"
edition = "2021"
[dependencies]
axum = "0.8"
tokio = { version = "1", features = ["full"] }
sqlx = { version = "0.8", features = ["runtime-tokio", "postgres", "uuid", "chrono"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tower-http = { version = "0.6", features = ["cors"] }
uuid = { version = "1", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
dotenvy = "0.15"
tracing = "0.1"
tracing-subscriber = "0.3"