Skip to content

Commit 60b2c7c

Browse files
authored
fix bevy_dev_tools build (bevyengine#16099)
# Objective - 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 - ## Solution - enable bevy_text feature of bevy_ui
1 parent 7c59317 commit 60b2c7c

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-dev" }
3333
bevy_time = { path = "../bevy_time", version = "0.15.0-dev" }
3434
bevy_transform = { path = "../bevy_transform", version = "0.15.0-dev" }
3535
bevy_text = { path = "../bevy_text", version = "0.15.0-dev" }
36-
bevy_ui = { path = "../bevy_ui", version = "0.15.0-dev" }
36+
bevy_ui = { path = "../bevy_ui", version = "0.15.0-dev", features = [
37+
"bevy_text",
38+
] }
3739
bevy_utils = { path = "../bevy_utils", version = "0.15.0-dev" }
3840
bevy_window = { path = "../bevy_window", version = "0.15.0-dev" }
3941
bevy_state = { path = "../bevy_state", version = "0.15.0-dev" }

0 commit comments

Comments
 (0)