@@ -9,15 +9,15 @@ repository = "https://github.com/makspll/bevy_mod_scripting"
9
9
homepage = " https://github.com/makspll/bevy_mod_scripting"
10
10
keywords = [" bevy" , " gamedev" , " scripting" , " rhai" ]
11
11
categories = [" game-development" ]
12
- readme = " readme.md"
12
+ readme = " readme.md"
13
13
14
14
[package .metadata ."docs .rs" ]
15
15
features = [" lua54" ]
16
16
17
17
[package .metadata .release ]
18
18
pre-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 },
21
21
]
22
22
enable-features = [" lua54" ]
23
23
@@ -39,16 +39,19 @@ mlua_macros = ["tealr/mlua_macros"]
39
39
mlua_async = [" tealr/mlua_async" ]
40
40
41
41
[lib ]
42
- name = " bevy_mod_scripting_lua"
43
- path = " src/lib.rs"
42
+ name = " bevy_mod_scripting_lua"
43
+ path = " src/lib.rs"
44
44
45
45
[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" }
48
48
# 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
+
50
55
parking_lot = " 0.12.1"
51
56
serde_json = " 1.0.81"
52
57
serde = { version = " 1" , features = [" derive" ] }
53
-
54
-
0 commit comments