diff --git a/crates/bevy_asset/Cargo.toml b/crates/bevy_asset/Cargo.toml index 0f0dd0a50fcf8..0c103c7610d6f 100644 --- a/crates/bevy_asset/Cargo.toml +++ b/crates/bevy_asset/Cargo.toml @@ -39,7 +39,7 @@ wasm-bindgen-futures = "0.4" js-sys = "0.3" [target.'cfg(target_os = "android")'.dependencies] -ndk-glue = { version = "0.2" } +ndk-glue = { version = "0.4" } [dev-dependencies] futures-lite = "1.4.0" diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index 56ffec034e2f0..de6f3607a2acc 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -74,4 +74,4 @@ bevy_winit = { path = "../bevy_winit", optional = true, version = "0.5.0" } bevy_gilrs = { path = "../bevy_gilrs", optional = true, version = "0.5.0" } [target.'cfg(target_os = "android")'.dependencies] -ndk-glue = {version = "0.2", features = ["logger"]} +ndk-glue = {version = "0.4", features = ["logger"]} diff --git a/deny.toml b/deny.toml index 663bc6450cd7b..12542e555f948 100644 --- a/deny.toml +++ b/deny.toml @@ -37,7 +37,6 @@ highlight = "all" # Certain crates/versions that will be skipped when doing duplicate detection. skip = [ { name = "ahash", version = "0.4" }, - { name = "android_log-sys", version = "0.1" }, { name = "cfg-if", version = "0.1" }, # https://github.com/rustwasm/console_error_panic_hook/pull/18 { name = "core-foundation", version = "0.6" }, { name = "core-foundation", version = "0.7" }, @@ -48,10 +47,8 @@ skip = [ { name = "hashbrown", version = "0.9" }, { name = "libm", version = "0.1" }, { name = "mach", version = "0.2" }, - { name = "ndk", version = "0.2" }, - { name = "ndk-glue", version = "0.2" }, - { name = "num_enum", version = "0.4" }, - { name = "num_enum_derive", version = "0.4" }, + { name = "ndk", version = "0.3" }, + { name = "ndk-glue", version = "0.3" }, { name = "proc-macro-crate", version = "0.1" }, { name = "stdweb", version = "0.1" }, ]