Merge pull request #129 from HeavyRain266/limit-bevy
Remove unused bevy features
No related branches found
No related tags found
Showing
- Cargo.lock 257 additions, 195 deletionsCargo.lock
- Cargo.toml 3 additions, 3 deletionsCargo.toml
- bevy_kayak_renderer/Cargo.toml 9 additions, 1 deletionbevy_kayak_renderer/Cargo.toml
- bevy_kayak_ui/Cargo.toml 5 additions, 1 deletionbevy_kayak_ui/Cargo.toml
- examples/bevy_event.rs 2 additions, 2 deletionsexamples/bevy_event.rs
- kayak_core/Cargo.toml 1 addition, 1 deletionkayak_core/Cargo.toml
- kayak_font/Cargo.toml 6 additions, 1 deletionkayak_font/Cargo.toml
This diff is collapsed.
... | @@ -17,15 +17,15 @@ bevy_renderer = [ | ... | @@ -17,15 +17,15 @@ bevy_renderer = [ |
] | ] | ||
[dependencies] | [dependencies] | ||
bevy = { version = "0.7.0", optional = true } | bevy = { version = "0.7.0", optional = true, default_features = false } | ||
bevy_kayak_ui = { path = "bevy_kayak_ui", optional = true } | bevy_kayak_ui = { path = "bevy_kayak_ui", optional = true } | ||
kayak_core = { path = "kayak_core" } | kayak_core = { path = "kayak_core" } | ||
kayak_font = { path = "kayak_font" } | kayak_font = { path = "kayak_font" } | ||
kayak_render_macros = { path = "kayak_render_macros" } | kayak_render_macros = { path = "kayak_render_macros" } | ||
[dev-dependencies] | [dev-dependencies] | ||
bevy = { version = "0.7.0" } | bevy = "0.7.0" | ||
rand = { version = "0.8.4" } | rand = "0.8.4" | ||
[[example]] | [[example]] | ||
name = "todo" | name = "todo" | ||
... | ... |
Please register or sign in to comment