diff --git a/crates/bevy_internal/Cargo.toml b/crates/bevy_internal/Cargo.toml index b00b9f6bb4a16..50b06c0d7e242 100644 --- a/crates/bevy_internal/Cargo.toml +++ b/crates/bevy_internal/Cargo.toml @@ -271,7 +271,7 @@ bevy_hierarchy = { path = "../bevy_hierarchy", version = "0.15.0-dev" } bevy_input = { path = "../bevy_input", version = "0.15.0-dev" } bevy_input_focus = { path = "../bevy_input_focus", version = "0.15.0-dev" } bevy_log = { path = "../bevy_log", version = "0.15.0-dev" } -bevy_math = { path = "../bevy_math", version = "0.15.0-dev" } +bevy_math = { path = "../bevy_math", version = "0.15.0-dev", features = ["bevy_reflect"] } bevy_ptr = { path = "../bevy_ptr", version = "0.15.0-dev" } bevy_reflect = { path = "../bevy_reflect", version = "0.15.0-dev", features = [ "bevy", diff --git a/crates/bevy_math/Cargo.toml b/crates/bevy_math/Cargo.toml index 2e92ea89a857e..8dbcb9fc16ed8 100644 --- a/crates/bevy_math/Cargo.toml +++ b/crates/bevy_math/Cargo.toml @@ -41,7 +41,7 @@ bevy_math = { path = ".", version = "0.15.0-dev", default-features = false, feat glam = { version = "0.29", default-features = false, features = ["approx"] } [features] -default = ["std", "rand", "bevy_reflect", "curve"] +default = ["std", "rand", "curve"] std = [ "alloc", "glam/std",