Skip to content

Commit 14c4894

Browse files
committed
Enables lewton when using audio-all feature
1 parent f3b18f7 commit 14c4894

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ fallback-wav = ["bevy_internal/fallback-wav"]
499499
# AAC audio format support (through `symphonia`)
500500
aac = ["bevy_internal/aac"]
501501

502-
# AAC, FLAC, MP3, MP4, OGG/VORBIS, and WAV audio formats support (through `symphonia`)
502+
# AAC, FLAC, MP3, MP4, WAV (through `symphonia`) and OGG/VORBIS (through `lewton`) audio formats support
503503
audio-all = ["bevy_internal/audio-all"]
504504

505505
# FLAC audio format support (through `symphonia`)

crates/bevy_audio/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ audio-all = [
5353
"rodio/flac",
5454
"rodio/mp3",
5555
"rodio/mp4",
56-
"rodio/vorbis",
56+
"rodio/lewton",
5757
"rodio/wav",
5858
]
5959

docs/cargo_features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ This is the complete `bevy` cargo feature list, without "profiles" or "collectio
6464
|asset_processor|Enables the built-in asset processor for processed assets.|
6565
|async-io|Use async-io's implementation of block_on instead of futures-lite's implementation. This is preferred if your application uses async-io.|
6666
|async_executor|Uses `async-executor` as a task execution backend.|
67-
|audio-all|AAC, FLAC, MP3, MP4, OGG/VORBIS, and WAV audio formats support (through `symphonia`)|
67+
|audio-all|AAC, FLAC, MP3, MP4, WAV (through `symphonia`) and OGG/VORBIS (through `lewton`) audio formats support|
6868
|basis-universal|Basis Universal compressed texture support|
6969
|bevy_animation|Provides animation functionality|
7070
|bevy_anti_alias|Provides various anti aliasing solutions|

0 commit comments

Comments
 (0)