-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
55 lines (50 loc) · 1.28 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
[package]
name = "ascii-bomb-ecs"
version = "0.1.0"
edition = "2021"
[lib]
name = "ascii_bomb_ecs_lib"
crate-type = ["cdylib", "rlib"]
[dependencies]
rand = "0.8"
rand_xoshiro = "0.6"
itertools = "0.10"
bevy_ggrs = { version = "0.14.0" }
bytemuck = { version = "1.7", features = ["derive"] }
bevy_matchbox = { git = "https://github.com/johanhelsing/matchbox", features = [
"ggrs",
] }
cfg-if = "1.0"
base64 = "0.21"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
bevy = { version = "0.12", default-features = false, features = [
"dynamic_linking",
"bevy_winit",
"png",
"bevy_core_pipeline",
"bevy_sprite",
"bevy_text",
"bevy_ui",
"x11",
"bevy_asset",
"multi-threaded",
] }
clap = { version = "4.3", features = ["derive"] }
serde = "1.0"
[target.'cfg(target_arch = "wasm32")'.dependencies]
bevy = { version = "0.12", default-features = false, features = [
"bevy_winit",
"png",
"bevy_core_pipeline",
"bevy_sprite",
"bevy_text",
"bevy_ui",
"bevy_asset",
"webgl2",
] }
once_cell = "1.8.0"
parking_lot = "0.12"
wasm-bindgen = "0.2"
[patch.crates-io]
bevy_ggrs = { git = "https://github.com/aleksa2808/bevy_ggrs", branch = "desync_fixes" }
ggrs = { git = "https://github.com/aleksa2808/ggrs", branch = "ascii-bomb-ecs-mp" }