1
0
mirror of https://git.ngram.ca/OpenJam/rc-servers synced 2026-08-23 23:08:52 +00:00

Create initial multiplayer server skeleton

This commit is contained in:
NG (Graham)
2025-07-01 20:04:11 -04:00
parent 9f74a2e76a
commit c2dc6088a0
11 changed files with 537 additions and 32 deletions

21
rc_multiplayer/Cargo.toml Normal file
View File

@@ -0,0 +1,21 @@
[package]
name = "rc_multiplayer"
version.workspace = true
edition.workspace = true
repository.workspace = true
license.workspace = true
authors.workspace = true
readme.workspace = true
[dependencies]
log.workspace = true
env_logger.workspace = true
tokio = { version = "1.43", features = [ "net", "macros", "rt-multi-thread", "io-util" ] }
clap.workspace = true
oj_rc_core = { version = "*", path = "../rc_core" }
async-trait.workspace = true
bytes = "1.10"
literustlib_server = { version = "0.1", path = "../../LiteRustLib/server" }
literustlib = { version = "0.1", path = "../../LiteRustLib" }
rlnl = { version = "0.1", path = "../../rlnl" }