mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 12:43:34 +00:00
e64efd399e
# Objective - I think our codebase is hit badly by rust-lang/rust-analyzer#11410 - None of our uses of cyclic dependencies are remotely necessary - Note that these are false positives in rust-analyzer, however it's probably easier for us to work around this - Note also that I haven't confirmed that this is causing rust-analyzer to not work very well, but it's not a bad guess. ## Solution - Remove our cyclic dependencies - Import the trick from #2851 for no-op plugin groups.
32 lines
963 B
TOML
32 lines
963 B
TOML
[package]
|
|
name = "bevy_audio"
|
|
version = "0.8.0-dev"
|
|
edition = "2021"
|
|
description = "Provides audio functionality for Bevy Engine"
|
|
homepage = "https://bevyengine.org"
|
|
repository = "https://github.com/bevyengine/bevy"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["bevy"]
|
|
|
|
[dependencies]
|
|
# bevy
|
|
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" }
|
|
|
|
# other
|
|
anyhow = "1.0.4"
|
|
rodio = { version = "0.15", default-features = false }
|
|
parking_lot = "0.11.0"
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
rodio = { version = "0.15", default-features = false, features = ["wasm-bindgen"] }
|
|
|
|
|
|
[features]
|
|
mp3 = ["rodio/mp3"]
|
|
flac = ["rodio/flac"]
|
|
wav = ["rodio/wav"]
|
|
vorbis = ["rodio/vorbis"]
|