From 1940f68346248e653198d086a64f2b0cd0088d03 Mon Sep 17 00:00:00 2001 From: Matty Weatherley Date: Sun, 22 Dec 2024 17:53:36 -0500 Subject: [PATCH] Remove bevy_reflect from default features of bevy_math --- crates/bevy_internal/Cargo.toml | 2 +- crates/bevy_math/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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",