-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (39 loc) · 1.63 KB
/
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
40
41
42
43
44
45
46
47
[package]
name = "hectic_dungeon"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["nithinmuthukumar", "MrPicklePinosaur"]
description = "RTS dungeon crawler"
repository = "https://github.com/HalfPixelStudios/hectic_dungeon.git"
[features]
default = ["bevy_sprite", "bevy_ui"]
bevy_sprite = ["bevy/bevy_sprite", "bevy/bevy_render"]
bevy_ui = ["bevy/bevy_ui", "bevy/bevy_text", "bevy/bevy_render"]
[dependencies]
## bevy related
bevy = { version = "0.8", default-features = false, features = [ "render", "animation", "bevy_winit", "bevy_gilrs", "png", "hdr", "filesystem_watcher", "x11", "trace" ] }
bevy_ecs_ldtk = { git = "https://github.com/Trouv/bevy_ecs_ldtk", features = [ "atlas" ] }
# bevy_bobs = { path = "../bevy_bobs", features = ["health_bar", "prefab", "physics_2d", "grid"] }
bevy_bobs = { git = "https://github.com/HalfPixelStudios/bevy_bobs", features = ["health_bar", "prefab", "physics_2d", "grid"] }
leafwing-input-manager = { version = "0.5" }
iyes_loopless = { version = "0.7" }
big-brain = { version = "0.12" }
bevy-inspector-egui = { version = "0.12" }
bevy_hanabi = { version = "0.3", default-features = false, features = ["2d"] }
## utilities
anyhow = "1"
thiserror = "1"
autodefault = { version = "2" }
## other
enum-map = { version = "2.4", features = ["serde"] }
priority-queue = { version = "1.2" }
rand = { version = "0.8" }
ron = "0.7"
serde = { version = "1", features = ["derive"] }
pino_argparse = { git = "https://github.com/MrPicklePinosaur/pino_argparse" }
pino_utils = { git = "https://github.com/MrPicklePinosaur/pino_utils" }
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3