init
This commit is contained in:
commit
f978b8af17
21 changed files with 4015 additions and 0 deletions
25
Cargo.toml
Normal file
25
Cargo.toml
Normal 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"
|
Loading…
Add table
Add a link
Reference in a new issue