Skip to content

Commit

Permalink
Merge pull request #10 from johanhelsing/no-default-features
Browse files Browse the repository at this point in the history
Disable Bevy default-features
  • Loading branch information
SergioRibera authored Nov 2, 2023
2 parents f0820c2 + 853d23f commit b3bca7a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ inspect = ["bevy-inspector-egui"]
serialize = ["serde"]

[dependencies]
bevy = { version = "0.11" }
bevy = { version = "0.11", default-features = false, features = [
"bevy_render",
"bevy_ui"
] }
bevy-inspector-egui = { version = "0.19", optional = true }
serde = { version = "^1", features = ["derive"], optional = true }

[dev-dependencies]
bevy = "0.11"

0 comments on commit b3bca7a

Please sign in to comment.