Skip to content

Commit 3c0aca0

Browse files
committed
fix bevy_dev_tools build (#16099)
- bevy_dev_tools 0.15.0-rc.1 failed to build docs - it use bevy_text feature in bevy_ui but it's not enabled by default - https://docs.rs/crate/bevy_dev_tools/0.15.0-rc.1 - - enable bevy_text feature of bevy_ui
1 parent b298d25 commit 3c0aca0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

crates/bevy_dev_tools/Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ bevy_render = { path = "../bevy_render", version = "0.15.0-rc.1" }
3333
bevy_time = { path = "../bevy_time", version = "0.15.0-rc.1" }
3434
bevy_transform = { path = "../bevy_transform", version = "0.15.0-rc.1" }
3535
bevy_text = { path = "../bevy_text", version = "0.15.0-rc.1" }
36-
bevy_ui = { path = "../bevy_ui", version = "0.15.0-rc.1" }
36+
bevy_ui = { path = "../bevy_ui", version = "0.15.0-rc.1", features = [
37+
"bevy_text",
38+
] }
3739
bevy_utils = { path = "../bevy_utils", version = "0.15.0-rc.1" }
3840
bevy_window = { path = "../bevy_window", version = "0.15.0-rc.1" }
3941
bevy_state = { path = "../bevy_state", version = "0.15.0-rc.1" }

0 commit comments

Comments
 (0)