-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (36 loc) · 804 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
32
33
34
35
36
37
38
39
[package]
name = "voxel-chat"
authors = ["Alec Thilenius <[email protected]>"]
edition = "2021"
license = "MIT/Apache-2.0"
version = "0.1.0"
[dependencies]
bevy = { version = "0.9" }
bevy_egui = "0.17.1"
bevy_prototype_debug_lines = { version = "0.9", features = ["3d"] }
bevy_rapier3d = { version = "0.19", features = ["debug-render"] }
bevy_vox_mesh = "0.5.0"
crossbeam-channel = "0.5"
egui = "0.19"
im = "15.1"
js-sys = "0.3"
ordered-float = { version = "3.0" }
rmp-serde = "1.1.1"
ron = "0.8"
serde = "1.0"
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
web-sys = { version = "0.3", features = [
"BinaryType",
"Blob",
"ErrorEvent",
"FileReader",
"MessageEvent",
"ProgressEvent",
"WebSocket",
] }
winit = "0.27"
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3