generated from yopox/bevy_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (34 loc) · 985 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
39
40
41
42
43
[package]
name = "ld53"
version = "0.1.0"
authors = ["yopox <yopoxdev@gmail.com>"]
description = ""
edition = "2021"
[profile.dev.package."*"]
opt-level = 3
[profile.dev]
opt-level = 1
[profile.release]
lto = true
codegen-units = 1
[features]
dev = [
"bevy/bevy_dylib",
]
[dependencies]
bevy = { version = "0.10", default-features = false, features = ["bevy_asset", "bevy_winit", "png", "x11"] }
bevy_asset_loader = { version = "0.16", default-features = false, features = ["2d"] }
bevy_common_assets = { version = "0.6", features = ["ron"] }
bevy_text_mode = "0.1.1"
bevy_tweening = { version = "0.7", features = ["bevy_sprite"] }
bevy_kira_audio = "0.15.0"
bevy_pkv = { version = "0.7" }
lazy_static = "1.4"
strum = "0.24"
strum_macros = "0.24"
enum-derived = "0.8.2"
rand = { version = "0.8", features = ["alloc"] }
winit = { version = "0.28", default-features = false }
image = { version = "0.24", default-features = false }
[build-dependencies]
embed-resource = "1.4"