forked from NiklasEi/bevy_kira_audio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (35 loc) · 1.11 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
[package]
name = "bevy_kira_audio"
version = "0.4.0"
authors = ["Niklas Eicker <[email protected]>"]
edition = "2018"
license = "MIT"
description = "Bevy plugin for dynamic audio"
repository = "https://github.com/NiklasEi/bevy_kira_audio"
homepage = "https://github.com/NiklasEi/bevy_kira_audio"
documentation = "https://github.com/NiklasEi/bevy_kira_audio"
keywords = ["bevy", "gamedev", "audio", "music"]
categories = ["game-development", "multimedia::audio"]
readme = "./README.md"
resolver = "2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
mp3 = ["kira/mp3"]
ogg = ["kira/ogg"]
flac = ["kira/flac"]
wav = ["kira/wav"]
[dependencies]
# bevy
bevy = { version = "0.5.0", default-features = false }
bevy_reflect = { version = "0.5.0", default-features = false }
# other
anyhow = "1.0"
kira = { version = "0.5.2", default-features = false }
parking_lot = "0.11.0"
[dev-dependencies]
winit = "0.24.0"
bevy = { version = "0.5.0", features = ["bevy_gltf", "bevy_winit", "render", "bevy_wgpu"] }
[[example]]
name = "basic"
path = "examples/basic.rs"
required-features = ["ogg"]