-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathCargo.toml
41 lines (39 loc) · 1.11 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
[package]
name = "bevy_ggrs_example"
version = "0.7.0"
authors = ["Johan Helsing <[email protected]>"]
description = "A demo game where two web browser can connect and move boxes around"
edition = "2021"
repository = "https://github.com/johanhelsing/matchbox"
keywords = ["gamedev", "webrtc", "peer-to-peer", "networking", "wasm"]
license = "MIT OR Apache-2.0"
[target.'cfg(target_arch = "wasm32")'.dependencies]
web-sys = { version = "0.3", features = [
"Document",
"Location", # for getting args from query string
] }
serde_qs = "0.13"
wasm-bindgen = "0.2"
bevy_ggrs = { version = "0.17", features = ["wasm-bindgen"] }
[dependencies]
bevy_matchbox = { path = "../../bevy_matchbox", features = ["ggrs"] }
bevy = { version = "0.15", default-features = false, features = [
"bevy_winit",
"bevy_render",
"bevy_pbr",
"bevy_core_pipeline",
"bevy_ui",
"bevy_text",
"bevy_asset",
"bevy_sprite",
"bevy_state",
"multi_threaded",
"png",
"webgl2",
"tonemapping_luts",
# gh actions runners don't like wayland
"x11",
] }
bevy_ggrs = "0.17"
clap = { version = "4.3", features = ["derive"] }
serde = "1.0"