This commit is contained in:
Matthieu Jolimaitre 2024-11-15 04:57:59 +01:00
commit f978b8af17
21 changed files with 4015 additions and 0 deletions

25
Cargo.toml Normal file
View file

@ -0,0 +1,25 @@
[package]
name = "d5"
version = "0.1.0"
edition = "2021"
[dependencies]
bevy = { version = "0.14.2", default-features = false, features = [
"multi_threaded",
] }
bevy_eventwork = "0.9.0"
itermore = { version = "0.7.1", features = ["array_chunks"] }
rand = "0.8.5"
serde = { version = "1.0.215", features = ["derive"] }
sysinfo = { version = "0.32.0", default-features = false, features = [
"system",
] }
termion = "4.0.3"
[[bin]]
name = "server"
path = "src/server.rs"
[[bin]]
name = "client"
path = "src/client.rs"