Skip to content

Commit

Permalink
Fix compile with no Bevy features
Browse files Browse the repository at this point in the history
  • Loading branch information
Seldom-SE committed Dec 16, 2024
1 parent 38bbf2e commit ce70ff2
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit ce70ff2

Please sign in to comment.