@@ -9,15 +9,15 @@ repository = "https://github.com/makspll/bevy_mod_scripting"
99homepage = " https://github.com/makspll/bevy_mod_scripting"
1010keywords = [" bevy" , " gamedev" , " scripting" , " rhai" ]
1111categories = [" game-development" ]
12- readme = " readme.md"
12+ readme = " readme.md"
1313
1414[package .metadata ."docs .rs" ]
1515features = [" lua54" ]
1616
1717[package .metadata .release ]
1818pre-release-replacements = [
19- {file = " Cargo.toml" , search = ' ^version\s*=\s*.*$' , replace = " version = \" {{version}}\" " , exactly = 1 },
20- {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 = ' ^version\s*=\s*.*$' , replace = " version = \" {{version}}\" " , exactly = 1 },
20+ { file = " Cargo.toml" , search = ' ^(?P<h>bevy_mod_scripting_core\s*=.*)version\s*=\s*".*"(?P<t>.*)$' , replace = " ${h}version = \" {{version}}\" ${t}" , exactly = 1 },
2121]
2222enable-features = [" lua54" ]
2323
@@ -39,16 +39,19 @@ mlua_macros = ["tealr/mlua_macros"]
3939mlua_async = [" tealr/mlua_async" ]
4040
4141[lib ]
42- name = " bevy_mod_scripting_lua"
43- path = " src/lib.rs"
42+ name = " bevy_mod_scripting_lua"
43+ path = " src/lib.rs"
4444
4545[dependencies ]
46- bevy = { version = " 0.11" , default-features = false }
47- bevy_mod_scripting_core = {path = " ../../bevy_mod_scripting_core" , version = " 0.3.0" }
46+ bevy = { version = " 0.11" , default-features = false }
47+ bevy_mod_scripting_core = { path = " ../../bevy_mod_scripting_core" , version = " 0.3.0" }
4848# Git pin required for v0.9.0-alpha4 dependancy, without it 0.9.1 is pulled
49- tealr = {git =" https://github.com/lenscas/tealr.git" , rev =" 05c9cdbace8abb6c12fc200e03a7ffcc5afff308" , features =[" mlua_vendored" ," mlua_send" ]}
49+ tealr = { git = " https://github.com/lenscas/tealr.git" , rev = " 05c9cdbace8abb6c12fc200e03a7ffcc5afff308" , features = [
50+ " mlua_vendored" ,
51+ " mlua_send" ,
52+ ] }
53+ tealr_derive = { git = " https://github.com/lenscas/tealr.git" , rev = " 05c9cdbace8abb6c12fc200e03a7ffcc5afff308" }
54+
5055parking_lot = " 0.12.1"
5156serde_json = " 1.0.81"
5257serde = { version = " 1" , features = [" derive" ] }
53-
54-
0 commit comments