From ce70ff2ef27d4065bc4158fe05d9162d38551205 Mon Sep 17 00:00:00 2001 From: Seldom <38388947+Seldom-SE@users.noreply.github.com> Date: Mon, 16 Dec 2024 15:14:40 -0700 Subject: [PATCH] Fix compile with no Bevy features --- Cargo.toml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c281ebd..963f6e8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,10 +27,21 @@ seldom_map_nav = { version = "0.7.0", optional = true } seldom_pixel_macros = { version = "0.2.0-dev", path = "macros" } seldom_state = { version = "0.11.0", optional = true } +[dependencies.bevy_internal] +version = "0.15.0" +default-features = false +features = ["bevy_image"] + [dependencies.bevy] version = "0.15.0" default-features = false -features = ["bevy_asset", "bevy_core_pipeline", "bevy_render", "bevy_sprite"] +features = [ + "bevy_asset", + "bevy_window", + "bevy_render", + "bevy_core_pipeline", + "bevy_sprite", +] [dev-dependencies] bevy = "0.15.0"