Dummy server to support proof-of-concept client

I'm planning to use WebSockets for game networking because it can be
used both on native and web environments.

I need some time and tools to figure out how to make Bevy hold and use a
WebSocket. I've taken the Axum WS text chat for use as a dummy activity
so I can build out a Bevy app which implements the text chat behavior.
This commit is contained in:
2025-10-17 09:13:29 -05:00
parent 88e6a8db5d
commit 0ebc137369
3 changed files with 184 additions and 2 deletions

View File

@@ -4,3 +4,6 @@ version = "0.1.0"
edition = "2024"
[dependencies]
axum = { version = "0.8", features = ["ws"] }
futures-util = { version = "0.3.31", features = ["std", "sink"] }
tokio = { version = "1", features = ["full"] }