mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
Make audio/image dependencies optional through feature flags
This commit is contained in:
parent
5e76a018c9
commit
a694d9a1b6
4 changed files with 25 additions and 5 deletions
12
Cargo.toml
12
Cargo.toml
|
@ -13,9 +13,19 @@ readme = "README.md"
|
|||
exclude = ["assets/**/*", "tools/**/*", ".github/**/*", "crates/**/*"]
|
||||
|
||||
[features]
|
||||
default = ["bevy_audio", "bevy_gltf", "bevy_wgpu", "bevy_winit"]
|
||||
default = ["bevy_audio", "bevy_gltf", "bevy_wgpu", "bevy_winit", "png", "hdr", "mp3"]
|
||||
profiler = ["bevy_ecs/profiler", "bevy_diagnostic/profiler"]
|
||||
|
||||
# Image format support for texture loading (PNG and HDR are enabled by default)
|
||||
png = ["bevy_render/png"]
|
||||
hdr = ["bevy_render/hdr"]
|
||||
|
||||
# Audio format support (MP3 is enabled by default)
|
||||
mp3 = ["bevy_audio/mp3"]
|
||||
flac = ["bevy_audio/flac"]
|
||||
wav = ["bevy_audio/wav"]
|
||||
vorbis = ["bevy_audio/vorbis"]
|
||||
|
||||
[workspace]
|
||||
members = [
|
||||
"crates/*",
|
||||
|
|
|
@ -17,4 +17,10 @@ bevy_ecs = {path = "../bevy_ecs", version = "0.1"}
|
|||
|
||||
# other
|
||||
anyhow = "1.0"
|
||||
rodio = {version = "0.11", default-features = false, features = ["mp3"]}
|
||||
rodio = {version = "0.11", default-features = false}
|
||||
|
||||
[features]
|
||||
mp3 = ["rodio/mp3"]
|
||||
flac = ["rodio/flac"]
|
||||
wav = ["rodio/wav"]
|
||||
vorbis = ["rodio/vorbis"]
|
||||
|
|
|
@ -26,7 +26,7 @@ impl AssetLoader<AudioSource> for Mp3Loader {
|
|||
}
|
||||
|
||||
fn extensions(&self) -> &[&str] {
|
||||
static EXTENSIONS: &[&str] = &["mp3"];
|
||||
static EXTENSIONS: &[&str] = &["mp3", "flac", "wav", "ogg"];
|
||||
EXTENSIONS
|
||||
}
|
||||
}
|
||||
|
|
|
@ -25,7 +25,7 @@ bevy_window = { path = "../bevy_window", version = "0.1" }
|
|||
# rendering
|
||||
spirv-reflect = "0.2.3"
|
||||
bevy-glsl-to-spirv = "0.1.7"
|
||||
image = { version = "0.23", default-features = false, features = ["png", "hdr"] }
|
||||
image = { version = "0.23", default-features = false }
|
||||
|
||||
# misc
|
||||
log = { version = "0.4", features = ["release_max_level_info"] }
|
||||
|
@ -38,3 +38,7 @@ once_cell = "1.4.0"
|
|||
downcast-rs = "1.1.1"
|
||||
thiserror = "1.0"
|
||||
anyhow = "1.0"
|
||||
|
||||
[features]
|
||||
png = ["image/png"]
|
||||
hdr = ["image/hdr"]
|
Loading…
Reference in a new issue