diff --git a/crates/bevy_asset/Cargo.toml b/crates/bevy_asset/Cargo.toml index 62b8d7d49ce89..191b4a9d7df94 100644 --- a/crates/bevy_asset/Cargo.toml +++ b/crates/bevy_asset/Cargo.toml @@ -23,9 +23,6 @@ bevy_reflect = { path = "../bevy_reflect", version = "0.9.0", features = ["bevy" bevy_tasks = { path = "../bevy_tasks", version = "0.9.0" } bevy_utils = { path = "../bevy_utils", version = "0.9.0" } -[target.'cfg(target_os = "android")'.dependencies] -bevy_winit = { path = "../bevy_winit", version = "0.9.0" } - # other serde = { version = "1", features = ["derive"] } crossbeam-channel = "0.5.0" @@ -36,6 +33,9 @@ fastrand = "1.7.0" notify = { version = "5.0.0", optional = true } parking_lot = "0.12.1" +[target.'cfg(target_os = "android")'.dependencies] +bevy_winit = { path = "../bevy_winit", version = "0.9.0" } + [target.'cfg(target_arch = "wasm32")'.dependencies] wasm-bindgen = { version = "0.2" } web-sys = { version = "0.3", features = ["Request", "Window", "Response"] }