-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
31 lines (29 loc) · 989 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[workspace]
resolver = "1"
members = [
"bot_client",
"client",
"server",
"shared"
]
exclude = [
]
[profile.dev.package."*"]
opt-level = 3
[workspace.dependencies]
log = "0.4.20"
ggez = "0.9.3"
derivative = "2.2.0"
serde = { version = "1.0.188", features = ["derive"] }
hashbrown = "0.14.0"
ron = "0.8.1"
thiserror = "1.0.48"
spin_sleep = "1.1.1"
logger = {git = "https://github.com/Bowarc/Crates.git", package = "logger"}
networking = {git = "https://github.com/Bowarc/Crates.git", package = "networking"}
time = {git = "https://github.com/Bowarc/Crates.git", package = "time"}
random = {git = "https://github.com/Bowarc/Crates.git", package = "random"}
threading = {git = "https://github.com/Bowarc/Crates.git", package = "threading"}
mem = {git = "https://github.com/Bowarc/Crates.git", package = "mem"}
triple_buffer = {git = "https://github.com/Bowarc/triple-buffer"}
enum_variant_name = {git = "https://github.com/Bowarc/Crates.git", package = "enum_variant_name"}