Initial version

This commit is contained in:
Jani Pulkkinen
2025-04-16 15:03:30 +03:00
commit 27a51916a3
24 changed files with 2551 additions and 0 deletions

15
Cargo.toml Normal file
View File

@@ -0,0 +1,15 @@
[package]
name = "lootakalenteri-backend"
version = "0.1.0"
edition = "2024"
[dependencies]
diesel = { version = "2.2.9", features = ["postgres", "uuid", "r2d2", "chrono"] }
uuid = "1.8.0"
dotenvy = "0.15.7"
actix-web = "4.10.2"
env_logger = "0.11.8"
serde = { version = "1.0.219", features = ["derive"] }
chrono = { version = "0.4.40", features = ["serde"] }
serde_json = "1.0.51"
actix-rt = "2.10.0"