-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (28 loc) · 817 Bytes
/
Cargo.toml
File metadata and controls
33 lines (28 loc) · 817 Bytes
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
[package]
name = "bomby"
version = "0.1.0"
edition = "2021"
[dependencies]
bevy_ecs_ldtk = "0.11"
bevy-inspector-egui = "0.28"
bevy_kira_audio = { version = "0.22", features = ["wav"] }
leafwing-input-manager = "0.16"
directories = "4.0"
itertools = "0.10"
noise = { git = "https://github.com/bsurmanski/noise-rs", rev = "5abdde1b819eccc47e74969c15e1b56ae5a055d6" }
rand = { version = "0.8", default-features = false, features = ["std", "small_rng"] }
serde = "1.0"
serde_derive = "1.0"
serde_ignored = "0.1.6"
toml = "0.5"
[dependencies.bevy]
version = "0.15"
default-features = false
features = ["bevy_asset", "bevy_state", "bevy_window", "multi_threaded", "png"]
[features]
default = ["x11"]
dev = ["bevy/dynamic_linking"]
x11 = ["bevy/x11"]
wayland = ["bevy/wayland"]
[profile.dev.package."*"]
opt-level = 0