@@ -27,10 +27,17 @@ rhai_bindings = ["bevy_mod_scripting_rhai"]
2727[dependencies ]
2828bevy_ecs = { workspace = true }
2929bevy_app = { workspace = true }
30- bevy_asset = { workspace = true }
31- bevy_platform = { workspace = true }
32- bevy_input = { workspace = true , optional = true }
33- bevy_math = { workspace = true , features = [" curve" ], optional = true }
30+ bevy_asset = { workspace = true , features = [" std" , " bevy_reflect" ] }
31+ bevy_platform = { workspace = true , features = [" std" ] }
32+ bevy_input = { workspace = true , optional = true , features = [
33+ " std" ,
34+ " bevy_reflect" ,
35+ ] }
36+ bevy_math = { workspace = true , features = [
37+ " std" ,
38+ " rand" ,
39+ " curve" ,
40+ ], optional = true }
3441bevy_reflect = { workspace = true , features = [
3542 " smol_str" ,
3643 " glam" ,
@@ -40,8 +47,15 @@ bevy_reflect = { workspace = true, features = [
4047], optional = true }
4148uuid = { workspace = true , optional = true }
4249smol_str = { workspace = true , optional = true }
43- bevy_time = { workspace = true , optional = true }
44- bevy_transform = { workspace = true , optional = true }
50+ bevy_time = { workspace = true , optional = true , features = [
51+ " std" ,
52+ " bevy_reflect" ,
53+ ] }
54+ bevy_transform = { workspace = true , optional = true , features = [
55+ " bevy_reflect" ,
56+ " std" ,
57+ " bevy-support" ,
58+ ] }
4559glam = { workspace = true , optional = true , features = [" serde" , " std" ] }
4660
4761
0 commit comments