From cec66c1e7dfbb73a10eb7c3e883f1a7309a6d19d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois?= Date: Fri, 3 Feb 2023 13:19:53 +0100 Subject: [PATCH] order matter :facepalm: --- crates/bevy_asset/Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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"] }