From bfb2ff16e8cd8c09df7ecd6fe694b34f44a585d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=ADn=20Maita?= <47983254+mnmaita@users.noreply.github.com> Date: Tue, 3 Dec 2024 18:55:42 +0100 Subject: [PATCH] Update rodio requirement from 0.19 to 0.20 (#16359) # Objective - Supersedes #16344 ## Solution - Updated `rodio` version requirement to `0.20`. - [Changelog](https://github.com/RustAudio/rodio/blob/master/CHANGELOG.md) ## Testing - CI checks. Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- crates/bevy_audio/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_audio/Cargo.toml b/crates/bevy_audio/Cargo.toml index ff858e168b..7df10a1bcb 100644 --- a/crates/bevy_audio/Cargo.toml +++ b/crates/bevy_audio/Cargo.toml @@ -23,13 +23,13 @@ bevy_derive = { path = "../bevy_derive", version = "0.15.0-dev" } bevy_utils = { path = "../bevy_utils", version = "0.15.0-dev" } # other -rodio = { version = "0.19", default-features = false } +rodio = { version = "0.20", default-features = false } [target.'cfg(target_os = "android")'.dependencies] cpal = { version = "0.15", optional = true } [target.'cfg(target_arch = "wasm32")'.dependencies] -rodio = { version = "0.19", default-features = false, features = [ +rodio = { version = "0.20", default-features = false, features = [ "wasm-bindgen", ] }