File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed
bevy_mod_scripting_functions Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ fn main() {
6868 let plugin_subdir = format ! ( "plugin-{}" , env!( "RUSTC_CHANNEL" ) ) ;
6969 let plugin_target_dir = metadata. target_directory . join ( plugin_subdir) ;
7070
71- info ! ( "Computing wokrspace metadata" ) ;
71+ info ! ( "Computing workspace metadata" ) ;
7272
7373 // inform the deps about the workspace crates, this is going to be useful when working with meta files as we will be able to
7474 // know when to panic if a crate is not found
Original file line number Diff line number Diff line change @@ -17,7 +17,8 @@ core_functions = ["bevy_mod_scripting_core"]
1717
1818
1919[dependencies ]
20- bevy = { workspace = true , default-features = false , features = [
20+ bevy = { workspace = true , features = [
2121 " reflect_functions" ,
2222] }
23+ uuid = " *"
2324bevy_mod_scripting_core = { workspace = true , optional = true }
Original file line number Diff line number Diff line change 1- use bevy:: prelude:: * ;
2-
1+ use :: bevy:: prelude:: * ;
2+ #[ cfg( feature = "core_functions" ) ]
3+ pub mod bevy;
34#[ cfg( feature = "core_functions" ) ]
45pub mod core;
56
You can’t perform that action at this time.
0 commit comments