Skip to content

Commit 48d8012

Browse files
committed
pin tealr_derive version
1 parent 952e453 commit 48d8012

File tree

1 file changed

+13
-10
lines changed

1 file changed

+13
-10
lines changed

languages/bevy_mod_scripting_lua/Cargo.toml

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ repository = "https://github.com/makspll/bevy_mod_scripting"
99
homepage = "https://github.com/makspll/bevy_mod_scripting"
1010
keywords = ["bevy", "gamedev", "scripting", "rhai"]
1111
categories = ["game-development"]
12-
readme="readme.md"
12+
readme = "readme.md"
1313

1414
[package.metadata."docs.rs"]
1515
features = ["lua54"]
1616

1717
[package.metadata.release]
1818
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 },
2121
]
2222
enable-features = ["lua54"]
2323

@@ -39,16 +39,19 @@ mlua_macros = ["tealr/mlua_macros"]
3939
mlua_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+
5055
parking_lot = "0.12.1"
5156
serde_json = "1.0.81"
5257
serde = { version = "1", features = ["derive"] }
53-
54-

0 commit comments

Comments
 (0)