-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (32 loc) · 859 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]
name = "hexadroid"
version = "0.1.0"
edition = "2021"
[features]
# default = ["inspector"]
inspector = ["bevy-inspector-egui"]
[dependencies]
# bevy = { version = "0.12", features = ["dynamic_linking"] }
bevy = { version = "0.12"}
bevy_rapier2d = { version = "0.23", features = ["serde-serialize"] }
bevy-inspector-egui = { version = "0.21", optional = true }
# bevy_prototype_debug_lines = "0.12"
bevy_mouse_tracking_plugin = "0.7"
bevy_egui = "0.23"
hexagon_tiles = "0.1"
bevy_prototype_lyon = "0.10"
egui_extras = "0.23"
clap = { version = "4", features = ["derive"] }
lazy_static = "1"
rand = "0.8"
rand_distr = "0.4"
# perlin_noise = "1"
perlin2d = "0.2"
serde_yaml = "0.9"
# big-brain = "0.18"
big-brain = { git="https://github.com/zkat/big-brain.git"}
parry2d = "0.13"
[profile.dev.package."*"]
opt-level = 3
[profile.dev]
opt-level = 1