Skip to content

Commit b389e7b

Browse files
authored
Bump rodio to 0.19 (#14090)
# Objective - Though Rodio will eventually be replaced with Kira for `bevy_audio`, we should not let it languish. ## Solution - Bump Rodio to 0.19. - This is [the changelog](https://github.com/RustAudio/rodio/blob/27f2b424060ff4a977285ff83ecd6c076205c121/CHANGELOG.md#version-0190-2024-06-29). No apparent breaking changes, only 1 feature and 1 fix. ## Testing - Run an example that uses audio, on both native and WASM. --- ## Changelog - Bumped Rodio to 0.19.
1 parent ace4eaa commit b389e7b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/bevy_audio/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ bevy_derive = { path = "../bevy_derive", version = "0.14.0-dev" }
2323
bevy_utils = { path = "../bevy_utils", version = "0.14.0-dev" }
2424

2525
# other
26-
rodio = { version = "0.18", default-features = false }
26+
rodio = { version = "0.19", default-features = false }
2727

2828
[target.'cfg(target_os = "android")'.dependencies]
2929
cpal = { version = "0.15", optional = true }
3030

3131
[target.'cfg(target_arch = "wasm32")'.dependencies]
32-
rodio = { version = "0.18", default-features = false, features = [
32+
rodio = { version = "0.19", default-features = false, features = [
3333
"wasm-bindgen",
3434
] }
3535

0 commit comments

Comments
 (0)