mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 15:14:50 +00:00
8c0ce5280b
# Objective - Standardize fmt for toml files ## Solution - Add [taplo](https://taplo.tamasfe.dev/) to CI (check for fmt and diff for toml files), for context taplo is used by the most popular extension in VScode [Even Better TOML](https://marketplace.visualstudio.com/items?itemName=tamasfe.even-better-toml - Add contribution section to explain toml fmt with taplo. Now to pass CI you need to run `taplo fmt --option indent_string=" "` or if you use vscode have the `Even Better TOML` extension with 4 spaces for indent --------- Co-authored-by: Alice Cecile <alice.i.cecile@gmail.com>
51 lines
1.6 KiB
TOML
51 lines
1.6 KiB
TOML
[package]
|
|
name = "bevy_audio"
|
|
version = "0.12.0"
|
|
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.12.0" }
|
|
bevy_asset = { path = "../bevy_asset", version = "0.12.0" }
|
|
bevy_ecs = { path = "../bevy_ecs", version = "0.12.0" }
|
|
bevy_math = { path = "../bevy_math", version = "0.12.0" }
|
|
bevy_reflect = { path = "../bevy_reflect", version = "0.12.0", features = [
|
|
"bevy",
|
|
] }
|
|
bevy_transform = { path = "../bevy_transform", version = "0.12.0" }
|
|
bevy_derive = { path = "../bevy_derive", version = "0.12.0" }
|
|
bevy_utils = { path = "../bevy_utils", version = "0.12.0" }
|
|
|
|
# other
|
|
rodio = { version = "0.17", default-features = false }
|
|
|
|
[target.'cfg(target_os = "android")'.dependencies]
|
|
oboe = { version = "0.5", optional = true }
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
rodio = { version = "0.17", default-features = false, features = [
|
|
"wasm-bindgen",
|
|
] }
|
|
|
|
[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 = ["oboe/shared-stdcxx"]
|
|
|
|
[lints]
|
|
workspace = true
|