
# Objective - Contributes to #15460 - Supersedes #8520 - Fixes #4906 ## Solution - Added a new `web` feature to `bevy`, and several of its crates. - Enabled new `web` feature automatically within crates without `no_std` support. ## Testing - `cargo build --no-default-features --target wasm32v1-none` --- ## Migration Guide When using Bevy crates which _don't_ automatically enable the `web` feature, please enable it when building for the browser. ## Notes - I added [`cfg_if`](https://crates.io/crates/cfg-if) to help manage some of the feature gate gore that this extra feature introduces. It's still pretty ugly, but I think much easier to read. - Certain `wasm` targets (e.g., [wasm32-wasip1](https://doc.rust-lang.org/nightly/rustc/platform-support/wasm32-wasip1.html#wasm32-wasip1)) provide an incomplete implementation for `std`. I have not tested these platforms, but I suspect Bevy's liberal use of usually unsupported features (e.g., threading) will cause these targets to fail. As such, consider `wasm32-unknown-unknown` as the only `wasm` platform with support from Bevy for `std`. All others likely will need to be treated as `no_std` platforms.
61 lines
2.0 KiB
TOML
61 lines
2.0 KiB
TOML
[package]
|
|
name = "bevy_audio"
|
|
version = "0.16.0-dev"
|
|
edition = "2024"
|
|
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.16.0-dev" }
|
|
bevy_asset = { path = "../bevy_asset", version = "0.16.0-dev" }
|
|
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-dev" }
|
|
bevy_math = { path = "../bevy_math", version = "0.16.0-dev" }
|
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-dev" }
|
|
bevy_transform = { path = "../bevy_transform", version = "0.16.0-dev" }
|
|
bevy_derive = { path = "../bevy_derive", version = "0.16.0-dev" }
|
|
|
|
# other
|
|
rodio = { version = "0.20", default-features = false }
|
|
tracing = { version = "0.1", default-features = false, features = ["std"] }
|
|
|
|
[target.'cfg(target_os = "android")'.dependencies]
|
|
cpal = { version = "0.15", optional = true }
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
# TODO: Assuming all wasm builds are for the browser. Require `no_std` support to break assumption.
|
|
rodio = { version = "0.20", default-features = false, features = [
|
|
"wasm-bindgen",
|
|
] }
|
|
bevy_app = { path = "../bevy_app", version = "0.16.0-dev", default-features = false, features = [
|
|
"web",
|
|
] }
|
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-dev", default-features = false, features = [
|
|
"web",
|
|
] }
|
|
|
|
[features]
|
|
mp3 = ["rodio/mp3"]
|
|
flac = ["rodio/flac"]
|
|
wav = ["rodio/wav"]
|
|
vorbis = ["rodio/vorbis"]
|
|
minimp3 = ["rodio/minimp3"]
|
|
symphonia-aac = ["rodio/symphonia-aac"]
|
|
symphonia-all = ["rodio/symphonia-all"]
|
|
symphonia-flac = ["rodio/symphonia-flac"]
|
|
symphonia-isomp4 = ["rodio/symphonia-isomp4"]
|
|
symphonia-vorbis = ["rodio/symphonia-vorbis"]
|
|
symphonia-wav = ["rodio/symphonia-wav"]
|
|
# Enable using a shared stdlib for cxx on Android.
|
|
android_shared_stdcxx = ["cpal/oboe-shared-stdcxx"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
rustdoc-args = ["-Zunstable-options", "--generate-link-to-definition"]
|
|
all-features = true
|