chore: integrate multiplayer code (wip)
This commit is contained in:
parent
2838d59f30
commit
4f5e21becb
66 changed files with 6423 additions and 18 deletions
29
server/relay-server/Cargo.toml
Normal file
29
server/relay-server/Cargo.toml
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
[package]
|
||||
name = "relay-server"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
tokio = {version = "1.48.0", features = ["full"]}
|
||||
axum = { version = "0.8.7", features = ["ws"] }
|
||||
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
||||
serde = { version = "1.0.228", features = ["derive"] }
|
||||
serde_json = "1.0.145"
|
||||
futures-util = "0.3.31"
|
||||
postcard = "1.1.3"
|
||||
bytes = "1.11.0"
|
||||
tracing = "0.1.41"
|
||||
tower-http = { version = "0.6.7", features = ["fs", "cors"] }
|
||||
protocol = {path = "../protocol"}
|
||||
rand = "0.8"
|
||||
|
||||
# User management / auth
|
||||
sqlx = { version = "0.8", features = ["sqlite", "runtime-tokio", "migrate"] }
|
||||
tower-sessions = "0.14"
|
||||
tower-sessions-sqlx-store = { version = "0.15", features = ["sqlite"] }
|
||||
axum-login = "0.18"
|
||||
argon2 = "0.5"
|
||||
time = "0.3"
|
||||
thiserror = "1"
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue