Basic steam login and demo upload

This commit is contained in:
Lol3rrr
2024-09-07 02:57:04 +02:00
parent 7c87bd6bcd
commit 324eaf7d3d
11 changed files with 3070 additions and 1 deletions

17
backend/Cargo.toml Normal file
View File

@@ -0,0 +1,17 @@
[package]
name = "backend"
version = "0.1.0"
edition = "2021"
[dependencies]
async-trait = "0.1.82"
axum = { version = "0.7.5", features = ["multipart"] }
serde = { version = "1.0.210", features = ["derive"] }
steam-openid = "0.2.0"
time = "0.3.36"
tokio = { version = "1.40.0", features = ["rt", "macros", "net", "mio"] }
tower-sessions = "0.13.0"
tower-http = { version = "0.5", features = ["fs"] }
tracing = { version = "0.1.40", features = ["async-await"] }
tracing-subscriber = "0.3.18"
futures-util = "0.3"