Skip to content

Commit d37cde8

Browse files
committed
fix feature location from #3851 (#4477)
# Objective - in #3851, a feature for tracing was added to bevy_transform - usage of that feature was moved to bevy_hierarchy, but the feature was not updated ## Solution - add the feature to bevy_hierarchy, remove it from bevy_transform
1 parent 6e5955f commit d37cde8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

crates/bevy_hierarchy/Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ repository = "https://github.com/bevyengine/bevy"
88
license = "MIT OR Apache-2.0"
99
keywords = ["bevy"]
1010

11+
[features]
12+
trace = []
13+
1114
[dependencies]
1215
# bevy
1316
bevy_app = { path = "../bevy_app", version = "0.7.0-dev" }

crates/bevy_internal/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ trace = [
1616
"bevy_ecs/trace",
1717
"bevy_log/trace",
1818
"bevy_render/trace",
19-
"bevy_transform/trace"
19+
"bevy_hierarchy/trace"
2020
]
2121
trace_chrome = [ "bevy_log/tracing-chrome" ]
2222
trace_tracy = ["bevy_render/tracing-tracy", "bevy_log/tracing-tracy" ]

crates/bevy_transform/Cargo.toml

-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@ repository = "https://github.com/bevyengine/bevy"
88
license = "MIT OR Apache-2.0"
99
keywords = ["bevy"]
1010

11-
[features]
12-
trace = []
13-
1411
[dependencies]
1512
# bevy
1613
bevy_app = { path = "../bevy_app", version = "0.7.0-dev" }

0 commit comments

Comments
 (0)