Inital Commit

This commit is contained in:
Alex Emmet 2026-04-21 21:35:28 +02:00
commit a309e824be
29 changed files with 2856 additions and 0 deletions

17
server/Cargo.toml Normal file
View file

@ -0,0 +1,17 @@
[package]
name = "server"
version = "0.1.0"
edition = "2021"
[dependencies]
tokio = { version = "1", features = ["full"] }
axum = { version = "0.8.9", features = ["tokio", "http2"] }
axum-server = { version = "0.8.0", features = ["tls-rustls"] }
tower = "0.5.3"
tower-http = { version = "0.6.8", features = ["fs", "cors", "trace"] }
rustls = "0.23"
rustls-pemfile = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tracing = "0.1"
tracing-subscriber = "0.3"