-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
37 lines (29 loc) · 993 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
[package]
edition = "2021"
name = "isometric"
version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy = {version = "0.14", features = ["dynamic_linking"] }
bevy_egui = "0.29.0"
bevy_rapier2d = "0.27"
bevy_ecs_tilemap = "0.14"
#big-brain = "0.16.0"
seldom_state = "0.11"
leafwing-input-manager = "0.15"
leafwing_manifest = {version = "0.2.0", features = ["yaml"]}
#bevy_asset_loader = { version = "0.20", features = ["2d"] }
bevy_common_assets = { version = "0.11", features = ["yaml"] }
turborand = "0.10.0"
dirs = "5.0"
serde = "1.0"
bevy-persistent = { version = "0.6", features = ["all"] }
noisy_bevy = "0.7"
bevy_spritesheet_animation = "0.4.2"
# Otimizations to speed up compilation in debug mode
# Enable a small amount of optimization in debug mode
[profile.dev]
opt-level = 1
# Enable high optimizations for dependencies (incl. Bevy), but not for our code:
[profile.dev.package."*"]
opt-level = 3