Skip to content

Commit 52e52fc

Browse files
committed
remove dependency on all bevy features for consumer crates
1 parent b2e907a commit 52e52fc

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

bevy_event_priority/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ name = "bevy_event_priority"
1616
path = "src/lib.rs"
1717

1818
[dependencies]
19-
bevy = { version = "0.8.0"}
19+
bevy = { version = "0.8.0", default-features = false}
2020

bevy_mod_scripting/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ mlua_serialize = ["tealr/mlua_serialize"]
4242
mlua_macros = ["tealr/mlua_macros"]
4343

4444
[dependencies]
45-
bevy = { version = "0.8.0"}
45+
bevy = { version = "0.8.0", default-features = false, features=["bevy_asset","bevy_gltf","bevy_animation","bevy_core_pipeline","bevy_ui","bevy_pbr","bevy_render","bevy_text","bevy_sprite","filesystem_watcher"]}
4646
tealr = { version = "0.9.0-alpha1", features=["mlua_vendored","mlua_send"]}
4747
rhai = { version = "1.7.0", features = ["sync"] }
4848
anyhow = "1.0.57"
@@ -61,6 +61,7 @@ smallvec = "1.9.0"
6161
[dev-dependencies]
6262
# bevy_console = { git = "https://github.com/OnlyGraphs/bevy-console" }
6363
# bevy_asset_loader = {git = "https://github.com/NiklasEi/bevy_asset_loader", features = ["dynamic_assets"]}
64+
bevy = { version = "0.8.0"}
6465
rand = "0.8.5"
6566
serde = "1.0.137"
6667
criterion = "0.3"

0 commit comments

Comments
 (0)