2020-07-16 20:46:51 +00:00
|
|
|
[package]
|
|
|
|
name = "bevy_audio"
|
2022-04-17 23:04:52 +00:00
|
|
|
version = "0.8.0-dev"
|
2021-10-27 00:12:14 +00:00
|
|
|
edition = "2021"
|
2020-08-10 00:24:27 +00:00
|
|
|
description = "Provides audio functionality for Bevy Engine"
|
|
|
|
homepage = "https://bevyengine.org"
|
|
|
|
repository = "https://github.com/bevyengine/bevy"
|
2021-07-23 21:11:51 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2020-08-10 00:24:27 +00:00
|
|
|
keywords = ["bevy"]
|
2020-07-16 20:46:51 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2020-08-10 00:39:28 +00:00
|
|
|
# bevy
|
2022-04-17 23:04:52 +00:00
|
|
|
bevy_app = { path = "../bevy_app", version = "0.8.0-dev" }
|
|
|
|
bevy_asset = { path = "../bevy_asset", version = "0.8.0-dev" }
|
|
|
|
bevy_ecs = { path = "../bevy_ecs", version = "0.8.0-dev" }
|
|
|
|
bevy_reflect = { path = "../bevy_reflect", version = "0.8.0-dev", features = ["bevy"] }
|
|
|
|
bevy_utils = { path = "../bevy_utils", version = "0.8.0-dev" }
|
2020-08-10 00:39:28 +00:00
|
|
|
|
|
|
|
# other
|
2021-07-15 21:25:49 +00:00
|
|
|
anyhow = "1.0.4"
|
2022-02-03 04:25:44 +00:00
|
|
|
rodio = { version = "0.15", default-features = false }
|
2020-09-10 19:54:24 +00:00
|
|
|
parking_lot = "0.11.0"
|
2020-08-11 06:30:42 +00:00
|
|
|
|
2021-11-11 01:17:38 +00:00
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
2022-02-03 04:25:44 +00:00
|
|
|
rodio = { version = "0.15", default-features = false, features = ["wasm-bindgen"] }
|
2021-11-11 01:17:38 +00:00
|
|
|
|
2022-01-05 22:30:15 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
# bevy
|
2022-04-17 23:04:52 +00:00
|
|
|
bevy_internal = { path = "../bevy_internal", version = "0.8.0-dev" }
|
2022-01-05 22:30:15 +00:00
|
|
|
|
2020-08-11 06:30:42 +00:00
|
|
|
[features]
|
|
|
|
mp3 = ["rodio/mp3"]
|
|
|
|
flac = ["rodio/flac"]
|
|
|
|
wav = ["rodio/wav"]
|
|
|
|
vorbis = ["rodio/vorbis"]
|