-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (27 loc) · 793 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
[package]
name = "vtt"
version = "0.1.0"
edition = "2021"
[profile.dev.package."*"]
opt-level = 3
[profile.dev]
opt-level = 1
[profile.release]
lto = true
strip = true
opt-level = "z"
debug = false
panic = "abort"
[dependencies]
bevy = { version = "0.13.2", features = ["wayland"] }
bevy-inspector-egui = "0.24.0"
bevy_egui = { version = "0.27.0", features = ["immutable_ctx"] }
bevy_infinite_grid = "0.12.0"
bevy_mod_mipmap_generator = { git = "https://github.com/DGriffin91/bevy_mod_mipmap_generator.git", version = "0.1.0" }
bevy_mod_picking = "0.18.2"
bincode = "1.3.3"
image = { version = "0.24.9", default-features = false }
lightyear = { git = "https://github.com/cBournhonesque/lightyear.git", features = ["webtransport", "zstd"] }
rand = "0.8.5"
serde = "1.0.203"
uuid = "1.8.0"