Implemented proxying of GSD requests

This commit is contained in:
Dennis Nemec
2025-09-30 21:55:53 +02:00
parent b95454458c
commit e8954ba5c1
14 changed files with 2589 additions and 2 deletions

17
Cargo.toml Normal file
View File

@ -0,0 +1,17 @@
[package]
name = "delivery-backend"
version = "0.1.0"
edition = "2024"
[dependencies]
axum = "0.8.6"
chrono = "0.4.42"
http = "1.3.1"
log = "0.4.28"
redis = { version = "0.32.6", features = ["connection-manager", "tokio-comp"] }
reqwest = { version = "0.12.23", features = ["json"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
simplelog = "0.12.2"
tokio = { version = "1.47.1", features = ["full"] }
toml = "0.9.7"