generated from loopystudios/bevy-shell-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
60 lines (54 loc) · 1.08 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
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "my-game"
version = "0.1.0"
edition = "2021"
[workspace]
members = [
"launchers/wasm",
"launchers/native",
]
[[bin]]
name="native-launcher"
path="launchers/native/src/main.rs"
# Optimizations for WASM
[profile.release]
panic = 'abort'
codegen-units = 1
opt-level = 'z'
lto = true
[dependencies]
image = "0.24.3"
winit = "0.26.1"
leafwing-input-manager = "0.5.1"
bevy_asset_loader = "*"
bevy_ecs_ldtk = { version = "0.4", features=["atlas"] }
bevy-inspector-egui = "0.12"
heron = { version = "4", features = ["2d"] }
inkling = "0.12.5"
[dependencies.bevy]
version = "0.8.0"
default-features = false
# These are the remaining default features other than `bevy_audio` and `vorbis`
features = [
"render",
"animation",
"bevy_asset",
"bevy_scene",
"bevy_winit",
"bevy_gilrs",
"png",
"hdr",
"filesystem_watcher",
"x11"
]
[dependencies.bevy_kira_audio]
version = "0.12"
# `ogg` format support is enabled by default, disable if you don't want it
default-features = false
# enable the features you care about
features = [
"wav",
"flac",
"mp3",
"ogg",
]