-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
55 lines (48 loc) · 1.01 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
[package]
name = "crackhead-adventures"
version = "1.2.0"
edition = "2021"
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[profile.release]
# lto = "thin" i need this off for builind release build for linux
strip="debuginfo"
[features]
dev = [
"bevy/dynamic",
]
[dependencies.bevy]
version = "0.8"
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"
features = [
"wav",
"flac",
"mp3",
"ogg",
]
[dependencies]
bevy-inspector-egui = "0.13.0"
bevy_rapier2d = "0.16.1"
bevy_prototype_debug_lines = "0.8"
navmesh = { git = "https://github.com/Pietrek14/navmesh", features = ["web"] }
tiled = { git = "https://github.com/Pietrek14/rs-tiled.git", branch = "next", default-features = false }
rand = "0.8.5"
winit = "0.26.1"
image = "0.24.3"