Skip to content

Commit

Permalink
Only use required Bevy features
Browse files Browse the repository at this point in the history
Makes it possible to use with bevy_kira_audio which requires some
Bevy's features be disabled.
  • Loading branch information
paul-hansen committed Mar 16, 2023
1 parent a87539c commit d1c2447
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,13 @@ edition = "2021"

[dependencies]
anyhow = "1.0"
bevy = "0.10"
bevy = { version = "0.10", default-features = false, features = ["bevy_render", "bevy_asset", "bevy_pbr", "bevy_core_pipeline", "bevy_scene", "bevy_gltf"] }
image = "0.24"
futures-lite = "1.12"

[dev-dependencies]
bevy = { version = "0.10" }

# Enable optimization in debug mode
[profile.dev]
opt-level = 1
Expand Down

0 comments on commit d1c2447

Please sign in to comment.