-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (31 loc) · 916 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
38
[package]
name = "bevy_bobs"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["nithinmuthukumar", "MrPicklePinosaur"]
description = "Collection of utilities for bevy projects"
repository = "https://github.com/HalfPixelStudios/bevy_bobs"
[lib]
[dependencies]
bevy = { version = "0.8" }
rand = { version = "0.8.5" }
anyhow = "1.0.58"
thiserror = "1"
ron = "0.8"
serde = { version = "1", features = ["derive"] }
bevy-inspector-egui = { version = "0.12", optional = true }
bevy_kira_audio = { version = "0.12", default-features = false, features = [ "wav" ], optional = true }
[features]
default = ["all"]
all = ["prefab", "physics_2d", "spawn_wave", "attack_pattern", "health_bar", "sfx", "cursor", "grid"]
prefab = []
physics_2d = []
spawn_wave = []
attack_pattern = []
health_bar = []
sfx = ["dep:bevy_kira_audio"]
cursor = []
grid = []
egui = ["dep:bevy-inspector-egui"]
serde = []