-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (24 loc) · 856 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 = "onyx"
version = "0.1.0"
edition = "2021"
[features]
debug-mode = []
[dependencies]
bevy = { version = "0.10.0" }
bevy_rapier2d = { version = "0.21.0", features = ["debug-render-2d", "wasm-bindgen"] }
bevy_ecs_ldtk = { git = "https://github.com/Trouv/bevy_ecs_ldtk.git", branch = "main", features=["atlas"] }
bevy_ggrs = { git = "https://github.com/johanhelsing/bevy_ggrs.git", branch = "bevy-0.10-refactor" }
ggrs = { git = "https://github.com/gschup/ggrs.git", features = ["sync-send"] }
bytemuck = "1.13.1"
bevy-inspector-egui = "0.18.1"
[target.wasm32-unknown-unknown]
runner = "wasm-server-runner"
[dev-dependencies]
serial_test = "1.0.0"
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[patch.crates-io]
bevy_ecs_tilemap = { git = "https://github.com/geieredgar/bevy_ecs_tilemap", branch = "bevy_track" }