Skip to content

Commit 73a2049

Browse files
committed
add more features for docs
1 parent 818c903 commit 73a2049

File tree

1 file changed

+20
-6
lines changed

1 file changed

+20
-6
lines changed

crates/bevy_mod_scripting_functions/Cargo.toml

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,17 @@ rhai_bindings = ["bevy_mod_scripting_rhai"]
2727
[dependencies]
2828
bevy_ecs = { workspace = true }
2929
bevy_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 }
3441
bevy_reflect = { workspace = true, features = [
3542
"smol_str",
3643
"glam",
@@ -40,8 +47,15 @@ bevy_reflect = { workspace = true, features = [
4047
], optional = true }
4148
uuid = { workspace = true, optional = true }
4249
smol_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+
] }
4559
glam = { workspace = true, optional = true, features = ["serde", "std"] }
4660

4761

0 commit comments

Comments
 (0)