@@ -18,24 +18,20 @@ exclude = ["assets/**/*", "tools/**/*", ".github/**/*", "crates/**/*"]
18
18
[features ]
19
19
default = [
20
20
" bevy_audio" ,
21
+ " bevy_dynamic_plugin" ,
21
22
" bevy_gilrs" ,
22
23
" bevy_gltf" ,
23
24
" bevy_wgpu" ,
24
25
" bevy_winit" ,
25
26
" render" ,
26
- " dynamic_plugins" ,
27
27
" png" ,
28
28
" hdr" ,
29
29
" mp3" ,
30
30
" x11" ,
31
31
]
32
32
profiler = [" bevy_ecs/profiler" , " bevy_diagnostic/profiler" ]
33
33
wgpu_trace = [" bevy_wgpu/trace" ]
34
- dynamic_plugins = [
35
- " bevy_core/dynamic_plugins" ,
36
- " bevy_app/dynamic_plugins" ,
37
- " bevy_type_registry/dynamic_plugins" ,
38
- ]
34
+
39
35
# Rendering support
40
36
render = [" bevy_pbr" , " bevy_render" , " bevy_sprite" , " bevy_text" , " bevy_ui" ]
41
37
# Image format support for texture loading (PNG and HDR are enabled by default)
@@ -79,6 +75,7 @@ bevy_audio = { path = "crates/bevy_audio", optional = true, version = "0.2.1" }
79
75
bevy_gltf = { path = " crates/bevy_gltf" , optional = true , version = " 0.2.1" }
80
76
bevy_pbr = { path = " crates/bevy_pbr" , optional = true , version = " 0.2.1" }
81
77
bevy_render = { path = " crates/bevy_render" , optional = true , version = " 0.2.1" }
78
+ bevy_dynamic_plugin = { path = " crates/bevy_dynamic_plugin" , optional = true , version = " 0.2.1" }
82
79
bevy_sprite = { path = " crates/bevy_sprite" , optional = true , version = " 0.2.1" }
83
80
bevy_text = { path = " crates/bevy_text" , optional = true , version = " 0.2.1" }
84
81
bevy_ui = { path = " crates/bevy_ui" , optional = true , version = " 0.2.1" }
0 commit comments