-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
60 lines (49 loc) · 1.42 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 = "bevy-rrise"
version = "0.2.1"
edition = "2021"
authors = ["David Taralla <[email protected]> & Contributors to the Rrise project"]
description = "A Wwise Bevy integration"
repository = "https://github.com/dtaralla/bevy-rrise"
documentation = "https://dtaralla.github.io/bevy-rrise/"
readme = "README.md"
keywords = ["library", "sound", "3D", "wwise"]
categories = ["multimedia", "game-development"]
license-file = "LICENSE"
exclude = [
"/examples/WwiseProject/Originals",
]
[dependencies]
cc = { version = "1.0.73", optional = true }
crossbeam-channel = "0.5"
[dependencies.rrise]
version = "0.2"
[dependencies.tracing]
version = "0.1"
features = ["attributes"]
[dependencies.bevy_easings]
version = "0.9"
optional = true
[dependencies.rrise-headers]
version = "0.2"
optional = true
[dependencies.bevy]
version = "0.9"
default-features = false
features = ["bevy_asset"]
[target.'cfg(windows)'.dependencies]
raw-window-handle = "0.5.0"
[target.'cfg(windows)'.dev-dependencies.bevy]
version = "0.9"
default-features = false
features = ["bevy_winit", "bevy_gltf"]
[target.'cfg(target_os = "linux")'.dev-dependencies.bevy]
version = "0.9"
default-features = false
features = ["x11"]
[[example]]
name = "music_visualizer"
required-features = ["cc", "bevy/render", "rrise-headers", "rrise/AkParametricEQFX"]
[[example]]
name = "doppler_drone"
required-features = ["cc", "bevy/render", "bevy_easings", "rrise/AkParametricEQFX"]