11[package ]
22name = " bevy_script_api"
3- version = " 0.3 .0"
3+ version = " 0.4 .0"
44authors = [" Maksymilian Mozolewski <makspl17@gmail.com>" ]
55edition = " 2021"
66license = " MIT"
@@ -13,26 +13,26 @@ readme = "readme.md"
1313
1414[package .metadata .release ]
1515pre-release-replacements = [
16- {file = " Cargo.toml" , search =' ^version\s*=\s*.*$' , replace =" version = \" {{version}}\" " , exactly =1 },
17- {file = " Cargo.toml" , search =' ^(?P<h>bevy_mod_scripting_derive\s*=.*)version\s*=\s*".*"(?P<t>.*)$' , replace =" ${h}version = \" {{version}}\" ${t}" , exactly =1 },
18- {file = " Cargo.toml" , search =' ^(?P<h>bevy_mod_scripting_core\s*=.*)version\s*=\s*".*"(?P<t>.*)$' , replace =" ${h}version = \" {{version}}\" ${t}" , exactly =1 },
19- {file = " Cargo.toml" , search =' ^(?P<h>bevy_mod_scripting_lua\s*=.*)version\s*=\s*".*"(?P<t>.*)$' , replace =" ${h}version = \" {{version}}\" ${t}" , exactly =1 },
20- {file = " Cargo.toml" , search =' ^(?P<h>bevy_mod_scripting_lua_derive\s*=.*)version\s*=\s*".*"(?P<t>.*)$' , replace =" ${h}version = \" {{version}}\" ${t}" , exactly =1 },
21- {file = " Cargo.toml" , search =' ^(?P<h>bevy_mod_scripting_rhai\s*=.*)version\s*=\s*".*"(?P<t>.*)$' , replace =" ${h}version = \" {{version}}\" ${t}" , exactly =1 },
16+ { file = " Cargo.toml" , search =' ^version\s*=\s*.*$' , replace =" version = \" {{version}}\" " , exactly =1 },
17+ { file = " Cargo.toml" , search =' ^(?P<h>bevy_mod_scripting_derive\s*=.*)version\s*=\s*".*"(?P<t>.*)$' , replace =" ${h}version = \" {{version}}\" ${t}" , exactly =1 },
18+ { file = " Cargo.toml" , search =' ^(?P<h>bevy_mod_scripting_core\s*=.*)version\s*=\s*".*"(?P<t>.*)$' , replace =" ${h}version = \" {{version}}\" ${t}" , exactly =1 },
19+ { file = " Cargo.toml" , search =' ^(?P<h>bevy_mod_scripting_lua\s*=.*)version\s*=\s*".*"(?P<t>.*)$' , replace =" ${h}version = \" {{version}}\" ${t}" , exactly =1 },
20+ { file = " Cargo.toml" , search =' ^(?P<h>bevy_mod_scripting_lua_derive\s*=.*)version\s*=\s*".*"(?P<t>.*)$' , replace =" ${h}version = \" {{version}}\" ${t}" , exactly =1 },
21+ { file = " Cargo.toml" , search =' ^(?P<h>bevy_mod_scripting_rhai\s*=.*)version\s*=\s*".*"(?P<t>.*)$' , replace =" ${h}version = \" {{version}}\" ${t}" , exactly =1 },
2222]
2323
2424[features ]
2525lua = [" bevy_mod_scripting_lua" ," bevy_mod_scripting_lua_derive" ]
2626rhai = [" bevy_mod_scripting_rhai" ]
2727
2828[dependencies ]
29- bevy = { version = " 0.11 " , default-features = false , features =[" bevy_asset" ," bevy_gltf" ," bevy_animation" ," bevy_core_pipeline" ," bevy_ui" ," bevy_pbr" ," bevy_render" ," bevy_text" ," bevy_sprite" , " filesystem_watcher " ]}
30- bevy_mod_scripting_derive = { path =" ../bevy_mod_scripting_derive" , version = " 0.3 .0" }
31- bevy_mod_scripting_core = { path =" ../bevy_mod_scripting_core" , version = " 0.3 .0" }
29+ bevy = { version = " 0.12 " , default-features = false , features =[" bevy_asset" ," bevy_gltf" ," bevy_animation" ," bevy_core_pipeline" ," bevy_ui" ," bevy_pbr" ," bevy_render" ," bevy_text" ," bevy_sprite" ]}
30+ bevy_mod_scripting_derive = { path =" ../bevy_mod_scripting_derive" , version = " 0.4 .0" }
31+ bevy_mod_scripting_core = { path =" ../bevy_mod_scripting_core" , version = " 0.4 .0" }
3232parking_lot =" 0.12.1"
3333paste =" 1.0.7"
3434thiserror =" 1.0.32"
3535# lua
36- bevy_mod_scripting_lua ={path =" ../languages/bevy_mod_scripting_lua" , version = " 0.3 .0" , optional =true }
37- bevy_mod_scripting_lua_derive ={path =" ../languages/bevy_mod_scripting_lua_derive" , version = " 0.3 .0" , optional =true }
38- bevy_mod_scripting_rhai ={path =" ../languages/bevy_mod_scripting_rhai" , version = " 0.3 .0" , optional =true }
36+ bevy_mod_scripting_lua ={path =" ../languages/bevy_mod_scripting_lua" , version = " 0.4 .0" , optional =true }
37+ bevy_mod_scripting_lua_derive ={path =" ../languages/bevy_mod_scripting_lua_derive" , version = " 0.4 .0" , optional =true }
38+ bevy_mod_scripting_rhai ={path =" ../languages/bevy_mod_scripting_rhai" , version = " 0.4 .0" , optional =true }
0 commit comments