-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix duplicate dependencies on raw-window-handle (#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 #11917
- Loading branch information
Showing
2 changed files
with
1 addition
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -74,15 +74,6 @@ deny = [ | |
{ name = "glam", deny-multiple-versions = true }, | ||
{ name = "raw-window-handle", deny-multiple-versions = true }, | ||
] | ||
# To avoid https://github.com/bevyengine/bevy/issues/11917 | ||
# = raw-window-handle v0.5.2 | ||
# └── ndk v0.7.0 | ||
# ├── cpal v0.15.2` | ||
# │ └── rodio v0.17.3 | ||
# │ └── bevy_audio v0.14.0-dev | ||
skip-tree = [ | ||
{ crate = "[email protected]", reason = "Waiting for new releases: https://github.com/bevyengine/bevy/issues/11917#issuecomment-1953629729" }, | ||
] | ||
|
||
[sources] | ||
unknown-registry = "deny" | ||
|