Skip to content

Commit

Permalink
Remove bevy_reflect from default features of bevy_math
Browse files Browse the repository at this point in the history
  • Loading branch information
mweatherley committed Dec 22, 2024
1 parent 2027700 commit 1940f68
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/bevy_internal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion crates/bevy_math/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 1940f68

Please sign in to comment.