@@ -7,32 +7,32 @@ license = "MIT"
77description = " Bevy API for multiple script languages, part of bevy_mod_scripting."
88repository = " https://github.com/makspll/bevy_mod_scripting"
99homepage = " https://github.com/makspll/bevy_mod_scripting"
10- keywords = [" bevy" , " gamedev" , " scripting" , " lua" ," rhai" ]
10+ keywords = [" bevy" , " gamedev" , " scripting" , " lua" , " rhai" ]
1111categories = [" game-development" ]
1212readme = " readme.md"
1313
14- [package .metadata .release ]
15- pre-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 },
22- ]
23-
2414[features ]
25- lua = [" bevy_mod_scripting_lua" ," bevy_mod_scripting_lua_derive" ]
15+ lua = [" bevy_mod_scripting_lua" , " bevy_mod_scripting_lua_derive" ]
2616rhai = [" bevy_mod_scripting_rhai" ]
2717
2818[dependencies ]
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" }
32- parking_lot =" 0.12.1"
33- paste =" 1.0.7"
34- thiserror =" 1.0.32"
19+ bevy = { version = " 0.12" , default-features = false , features = [
20+ " bevy_asset" ,
21+ " bevy_gltf" ,
22+ " bevy_animation" ,
23+ " bevy_core_pipeline" ,
24+ " bevy_ui" ,
25+ " bevy_pbr" ,
26+ " bevy_render" ,
27+ " bevy_text" ,
28+ " bevy_sprite" ,
29+ ] }
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" }
32+ parking_lot = " 0.12.1"
33+ paste = " 1.0.7"
34+ thiserror = " 1.0.32"
3535# lua
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 }
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