-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
59 lines (55 loc) · 1.72 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
[package]
name = "survival_game"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies.bevy]
version = "0.10.0"
default-features = true
# These are the remaining default features other than `bevy_audio` and `mp3`
features = [
# "bevy_winit",
# "bevy_gilrs",
# "png",
# "hdr",
# "filesystem_watcher",
# "x11",
# "vorbis",
# "mp3",
#
# "bevy_asset", # Assets management
# "bevy_scene", # Scenes management
# "bevy_gilrs", # Gamepad input support
# "bevy_audio", # Builtin audio
# "bevy_winit", # Window management
# "animation", # Animation support
# "x11", # Linux: Support X11 windowing system
# "filesystem_watcher", # Asset hot-reloading
# "render", # Graphics Rendering
#
# "bevy_render", # Rendering framework core
# "bevy_sprite", # 2D (sprites) rendering
# "bevy_text", # Text/font rendering
# "bevy_ui", # UI toolkit
#
# "dynamic", # Dynamic linking for faster compile-times
]
[dependencies]
rand = "0.8.5"
getrandom = { version = "0.2.5", features = ["js"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
bevy-inspector-egui = "0.18.1"
bevy_egui = "0.20"
noise = { version = "0.8.2", features = ["images"] }
[dependencies.bevy_kira_audio]
version = "0.15.0"
# `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",
]