Skip to content
Snippets Groups Projects
Unverified Commit 61558137 authored by Nolan Darilek's avatar Nolan Darilek Committed by GitHub
Browse files

fix(deps): Don't include Bevy default features when used as a dependency. (#25)

Without this change, this plugin pulls in dependencies for Bevy features I don't need when used as a plugin (E.g. the audio feature is enabled even though neither I nor this plugin require it.) All features are re-enabled in `[dev-dependencies]` so examples are unconstrained.
parent 490d2197
No related branches found
No related tags found
No related merge requests found
......@@ -12,5 +12,7 @@ repository = "https://github.com/zkat/big-brain"
homepage = "https://github.com/zkat/big-brain"
[dependencies]
bevy = "0.5.0"
bevy = { version = "0.5.0", default-features = false }
[dev-dependencies]
bevy = { version = "0.5.0", default-features = true }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment