first commit

This commit is contained in:
2025-08-25 22:41:07 +02:00
commit 0bef2b69c2
25 changed files with 6007 additions and 0 deletions

12
back/Cargo.toml Normal file
View File

@@ -0,0 +1,12 @@
[package]
name = "back"
version = "0.1.0"
edition = "2024"
[dependencies]
axum = "0.8.4"
diesel = { version = "2.2.0", features = ["mysql", "serde_json"] }
dotenvy = "0.15"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.143"
tokio = { version = "1.47.1", features = ["rt-multi-thread"] }