11[package ]
22name = " bevy_mod_scripting"
3- version = " 0.8.0-alpha.1 "
3+ version = " 0.8.0-alpha.2 "
44authors = [" Maksymilian Mozolewski <makspl17@gmail.com>" ]
55edition = " 2021"
66license = " MIT OR Apache-2.0"
@@ -36,6 +36,7 @@ lua53 = ["bevy_mod_scripting_lua/lua53", "lua"]
3636lua54 = [" bevy_mod_scripting_lua/lua54" , " lua" ]
3737luajit = [" bevy_mod_scripting_lua/luajit" , " lua" ]
3838luajit52 = [" bevy_mod_scripting_lua/luajit52" , " lua" ]
39+ luau = [" bevy_mod_scripting_lua/luau" , " lua" ]
3940
4041# optional
4142unsafe_lua_modules = [" bevy_mod_scripting_lua/unsafe_lua_modules" ]
@@ -53,22 +54,22 @@ rune = ["bevy_mod_scripting_rune"]
5354[dependencies ]
5455bevy = { workspace = true }
5556bevy_mod_scripting_core = { workspace = true }
56- bevy_mod_scripting_lua = { path = " crates/languages/bevy_mod_scripting_lua" , version = " 0.8.0-alpha.1 " , optional = true }
57- bevy_mod_scripting_rhai = { path = " crates/languages/bevy_mod_scripting_rhai" , version = " 0.8.0-alpha.1 " , optional = true }
58- bevy_mod_scripting_rune = { path = " crates/languages/bevy_mod_scripting_rune" , version = " 0.8.0-alpha.1 " , optional = true }
57+ bevy_mod_scripting_lua = { path = " crates/languages/bevy_mod_scripting_lua" , version = " 0.8.0-alpha.2 " , optional = true }
58+ bevy_mod_scripting_rhai = { path = " crates/languages/bevy_mod_scripting_rhai" , version = " 0.8.0-alpha.2 " , optional = true }
59+ bevy_mod_scripting_rune = { path = " crates/languages/bevy_mod_scripting_rune" , version = " 0.8.0-alpha.2 " , optional = true }
5960
6061
6162[workspace .dependencies ]
62- bevy = { version = " 0.15.0-rc.3 " , default-features = false }
63- bevy_mod_scripting_core = { path = " crates/bevy_mod_scripting_core" , version = " 0.8.0-alpha.1 " }
64- bevy_mod_scripting_common = { path = " crates/bevy_mod_scripting_common" , version = " 0.8.0-alpha.1 " }
63+ bevy = { version = " 0.15.0" , default-features = false }
64+ bevy_mod_scripting_core = { path = " crates/bevy_mod_scripting_core" , version = " 0.8.0-alpha.2 " }
65+ bevy_mod_scripting_common = { path = " crates/bevy_mod_scripting_common" , version = " 0.8.0-alpha.2 " }
6566test_utils = { path = " crates/test_utils" }
6667
6768[dev-dependencies ]
6869bevy = { workspace = true , default-features = true }
6970clap = { version = " 4.1" , features = [" derive" ] }
7071rand = " 0.8.5"
71- bevy_console = " 0.12 "
72+ bevy_console = " 0.13 "
7273rhai-rand = " 0.1"
7374
7475[workspace ]
@@ -102,26 +103,23 @@ codegen-units = 8
102103incremental = false
103104debug = false
104105
105- # TODO: bump once bevy is released and the lib is updated
106- # [[example]]
107- # name = "console_integration_lua"
108- # path = "examples/lua/console_integration.rs"
109- # required-features = [
110- # "lua54",
111- #
112- # "bevy/file_watcher",
113- # "bevy/multi_threaded",
114- # ]
115-
116- # [[example]]
117- # name = "console_integration_rhai"
118- # path = "examples/rhai/console_integration.rs"
119- # required-features = [
120- # "rhai",
121- # ,
122- # "bevy/file_watcher",
123- # "bevy/multi_threaded",
124- # ]
106+ [[example ]]
107+ name = " console_integration_lua"
108+ path = " examples/lua/console_integration.rs"
109+ required-features = [
110+ " lua54" ,
111+ " bevy/file_watcher" ,
112+ " bevy/multi_threaded" ,
113+ ]
114+
115+ [[example ]]
116+ name = " console_integration_rhai"
117+ path = " examples/rhai/console_integration.rs"
118+ required-features = [
119+ " rhai" ,
120+ " bevy/file_watcher" ,
121+ " bevy/multi_threaded" ,
122+ ]
125123
126124[[example ]]
127125name = " complex_game_loop_lua"
0 commit comments