-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
60 lines (52 loc) · 1.7 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
[workspace]
members = ["cosmos_client", "cosmos_core", "cosmos_server"]
# Fixed wgpu issue
resolver = "2"
[workspace.dependencies]
bevy = { version = "0.15", default-features = false }
bevy_rapier3d = { git = "/~https://github.com/AnthonyTornetta/bevy_rapier", version = "0.28.0", branch = "master", features = [
"simd-stable",
"serde-serialize",
] }
bevy_easy_compute = { git = "/~https://github.com/AnthonyTornetta/bevy_easy_compute", branch = "no-build-worker", version = "0.15" }
renet2 = { git = "/~https://github.com/UkoeHB/renet2", branch = "main", version = "0.0.7" }
serde = "1.0"
serde_json = "1.0"
bincode = "1.3"
noise = "0.9.0"
# Check out https://crates.io/crates/tinyrand in future
bevy_renet2 = { git = "/~https://github.com/UkoeHB/renet2", branch = "main", version = "0.0.7" }
rand = "0.8.5"
rand_chacha = "0.3.1"
# bigdecimal 0.4.6 has a formatting regression that causes a crash
bigdecimal = "0.4.5"
rayon = "1.10"
futures-lite = "2.5"
local-ip-address = "0.6.3"
image = { version = "0.25.5", default-features = false, features = ["png"] }
bevy-inspector-egui = "0.28.0"
crossterm = { version = "0.28.1", features = ["event-stream"] }
renet2_visualizer = { git = "/~https://github.com/UkoeHB/renet2", branch = "main", version = "0.0.7" }
walkdir = "2.5"
toml = "0.8.19"
lz4_flex = "0.11.3"
thread-priority = "1.2"
bevy_kira_audio = "0.21.0"
anyhow = "1.0"
thiserror = "2.0"
bitflags = "2.6"
bevy_mod_debugdump = "0.12.0"
arboard = "3.4"
derive_more = "1.0"
clap = "4.5"
bytemuck = "1.20"
bevy_obj = "0.15"
bevy_hanabi = "0.14"
# iyes_perf_ui = "0.3.0"
# bevy_mod_billboard = "0.7.0"
# For any non workspace package
[profile.dev.package."*"]
opt-level = 3
# Makes rapier faster
[profile.release]
codegen-units = 1