Skip to content

Commit ee2fdc0

Browse files
authoredMar 5, 2024
Fix duplicate dependencies on raw-window-handle (bevyengine#12309)
# Objective cpal has been updated to [0.15.3](https://crates.io/crates/cpal/0.15.3). we can remove the skip to avoid check for cpal 0.15.2 dependencies in deny.toml cpal now uses ndk 8.0 and Oboe 6.0, so we only have a version for raw-window-handle, version 0.6 ## Solution - Remove temporal fix that skipped the check for the cpal dependency. - Update oboe to 0.6 Fixes bevyengine#11917
1 parent 5b69613 commit ee2fdc0

File tree

2 files changed

+1
-10
lines changed

2 files changed

+1
-10
lines changed
 

‎crates/bevy_audio/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ bevy_utils = { path = "../bevy_utils", version = "0.14.0-dev" }
2525
rodio = { version = "0.17", default-features = false }
2626

2727
[target.'cfg(target_os = "android")'.dependencies]
28-
oboe = { version = "0.5", optional = true }
28+
oboe = { version = "0.6", optional = true }
2929

3030
[target.'cfg(target_arch = "wasm32")'.dependencies]
3131
rodio = { version = "0.17", default-features = false, features = [

‎deny.toml

-9
Original file line numberDiff line numberDiff line change
@@ -74,15 +74,6 @@ deny = [
7474
{ name = "glam", deny-multiple-versions = true },
7575
{ name = "raw-window-handle", deny-multiple-versions = true },
7676
]
77-
# To avoid https://github.com/bevyengine/bevy/issues/11917
78-
# = raw-window-handle v0.5.2
79-
# └── ndk v0.7.0
80-
# ├── cpal v0.15.2`
81-
# │ └── rodio v0.17.3
82-
# │ └── bevy_audio v0.14.0-dev
83-
skip-tree = [
84-
{ crate = "cpal@0.15.2", reason = "Waiting for new releases: https://github.com/bevyengine/bevy/issues/11917#issuecomment-1953629729" },
85-
]
8677

8778
[sources]
8879
unknown-registry = "deny"

0 commit comments

Comments
 (0)