Skip to content

Commit

Permalink
Relax Bevy requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
jgayfer committed Dec 2, 2024
1 parent dd4975f commit c1ef905
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,28 +11,28 @@ readme = "README.md"
exclude = ["assets/*", "static/*"]

[dependencies]
bevy = { version = "0.15.0", default-features = false, features = [
bevy = { version = "0.15", default-features = false, features = [
"bevy_render",
"bevy_core_pipeline",
"bevy_winit",
"x11",
// TODO: Remove when https://github.com/bevyengine/bevy/issues/16568 is resolved.
# TODO: Remove when https://github.com/bevyengine/bevy/issues/16568 is resolved.
"bevy_window",
// TODO: Remove when https://github.com/bevyengine/bevy/issues/16563 is resolved.
# TODO: Remove when https://github.com/bevyengine/bevy/issues/16563 is resolved.
"png"
] }
smallvec = "1.13"

[dev-dependencies]
bevy = { version = "0.15.0", default-features = false, features = [
bevy = { version = "0.15", default-features = false, features = [
"bevy_render",
"bevy_core_pipeline",
"bevy_winit",
"bevy_sprite",
"png",
"x11"
// TODO: Remove when https://github.com/bevyengine/bevy/issues/16568 is resolved.
"bevy_window",
"x11",
# TODO: Remove when https://github.com/bevyengine/bevy/issues/16568 is resolved.
"bevy_window"
] }

[lints.clippy]
Expand Down

0 comments on commit c1ef905

Please sign in to comment.