-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
63 lines (60 loc) · 1.44 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[workspace]
resolver = "2"
members = [
"crates/core",
"crates/server",
"crates/client",
"crates/default-game",
"crates/default-server",
"crates/bevy-client",
"crates/bevy_fabricator",
]
[profile.dev]
opt-level = 1
# Enable high optimizations for dependencies (incl. Bevy), but not for our code:
[profile.dev.package]
"*" = { opt-level = 3 }
yewoh-bevy-client = { opt-level = 1 }
yewoh-client = { opt-level = 1 }
yewoh = { opt-level = 1 }
yewoh-default-game = { opt-level = 1 }
yewoh-default-server = { opt-level = 1 }
yewoh-server = { opt-level = 1 }
[workspace.dependencies]
derive_more = "1.0.0"
tokio = { version = "1.40.0", default-features = false }
futures = "0.3.31"
anyhow = "1.0.89"
bytemuck = "1.19.0"
bitflags = "2.6.0"
indexmap = "2.6.0"
async-trait = "0.1.83"
tracing = "0.1.40"
clap = "4.5.20"
nom = "7.1.3"
serde = "1.0.210"
erased-serde = "0.4.5"
serde_yaml = "0.9.33"
serde_json = "1.0.128"
glam = "0.29.0"
bevy = { version = "0.15.0-rc.2", git = "https://github.com/bevyengine/bevy.git", tag = "v0.15.0-rc.2", default-features = false }
axum = "0.7.7"
axum-server = "0.7.1"
ctrlc = "3.4.5"
sqlx = "0.8.2"
shell-words = "1.1.0"
chrono = "0.4.38"
rand = "0.8.5"
humantime = "2.1.0"
humantime-serde = "1.1.1"
argon2 = "0.5.3"
password-hash = "0.5.0"
uuid = "1.10.0"
byteorder = "1.5.0"
flate2 = "1.0.34"
once_cell = "1.20.2"
strum = "0.26.3"
strum_macros = "0.26.4"
encode_unicode = "1.0.0"
md5 = "0.7.0"
smallvec = "1.13.2"