From 16eb407a703eed10d7f8159041f662aa6f8ccf7a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Jun 2026 07:11:32 +0000 Subject: [PATCH] Update cpal requirement from 0.17 to 0.18 Updates the requirements on [cpal](https://github.com/RustAudio/cpal) to permit the latest version. - [Release notes](https://github.com/RustAudio/cpal/releases) - [Changelog](https://github.com/RustAudio/cpal/blob/master/CHANGELOG.md) - [Commits](https://github.com/RustAudio/cpal/compare/v0.17.0...v0.18.1) --- updated-dependencies: - dependency-name: cpal dependency-version: 0.18.1 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 c0a4edc9e4cad..63e6abecfe511 100644 --- a/crates/bevy_audio/Cargo.toml +++ b/crates/bevy_audio/Cargo.toml @@ -25,7 +25,7 @@ rodio = { version = "0.22", default-features = false, features = [ tracing = { version = "0.1", default-features = false, features = ["std"] } [target.'cfg(target_os = "android")'.dependencies] -cpal = { version = "0.17", optional = true } +cpal = { version = "0.18", optional = true } [target.'cfg(target_arch = "wasm32")'.dependencies] # TODO: Assuming all wasm builds are for the browser. Require `no_std` support to break assumption.