generated from cxreiff/bevy_trunk_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (42 loc) · 1.07 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
[package]
name = "bevy_app"
version = "0.1.0"
publish = false
authors = ["cxreiff <[email protected]>"]
edition = "2021"
exclude = ["dist", "platform", "assets"]
[profile.dev.package."*"]
opt-level = 3
[profile.dev]
opt-level = 1
[profile.release]
lto = true
codegen-units = 1
[features]
dev = ["bevy/dynamic_linking"]
[dependencies]
bevy = { version = "0.10", default-features = false, features = [
"bevy_asset",
"bevy_winit",
"bevy_render",
"png",
"x11",
] }
bevy_kira_audio = "0.15"
bevy_asset_loader = { version = "0.16", features = ["standard_dynamic_assets"] }
rand = "0.8"
bevy-inspector-egui = "0.18"
bevy-debug-text-overlay = "5.1"
winit = { version = "0.28", default-features = false }
image = { version = "0.24", default-features = false }
bevy_mod_picking = { version = "0.13", default-features = false, features = [
"backend_raycast",
"highlight",
] }
hexx = "0.7.0"
derive_more = { version = "0.99.17", default-features = false, features = [
"constructor",
] }
strum = { version = "0.25", features = ["derive"] }
[build-dependencies]
embed-resource = "1.4"