From 21d6bd69698cd316617af9b5672877740329ef3d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 May 2024 06:24:54 +0000 Subject: [PATCH 1/2] Update rodio requirement from 0.17 to 0.18 --- updated-dependencies: - dependency-name: rodio dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/bevy_audio/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_audio/Cargo.toml b/crates/bevy_audio/Cargo.toml index fc0bb3aaec3f5..d5e6b5345ed33 100644 --- a/crates/bevy_audio/Cargo.toml +++ b/crates/bevy_audio/Cargo.toml @@ -23,7 +23,7 @@ bevy_derive = { path = "../bevy_derive", version = "0.14.0-dev" } bevy_utils = { path = "../bevy_utils", version = "0.14.0-dev" } # other -rodio = { version = "0.17", default-features = false } +rodio = { version = "0.18", default-features = false } [target.'cfg(target_os = "android")'.dependencies] cpal = { version = "0.15", optional = true } From 0f81e60d6f2896b25bf053e6b2536fe1391d907e Mon Sep 17 00:00:00 2001 From: BD103 <59022059+BD103@users.noreply.github.com> Date: Fri, 31 May 2024 13:56:56 -0400 Subject: [PATCH 2/2] fix: update wasm rodio dependency too --- crates/bevy_audio/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_audio/Cargo.toml b/crates/bevy_audio/Cargo.toml index d5e6b5345ed33..152f86df9bdcd 100644 --- a/crates/bevy_audio/Cargo.toml +++ b/crates/bevy_audio/Cargo.toml @@ -29,7 +29,7 @@ rodio = { version = "0.18", default-features = false } cpal = { version = "0.15", optional = true } [target.'cfg(target_arch = "wasm32")'.dependencies] -rodio = { version = "0.17", default-features = false, features = [ +rodio = { version = "0.18", default-features = false, features = [ "wasm-bindgen", ] }