Skip to content

Commit

Permalink
pin tealr_derive version
Browse files Browse the repository at this point in the history
  • Loading branch information
makspll committed Jan 17, 2024
1 parent 952e453 commit 48d8012
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions languages/bevy_mod_scripting_lua/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ repository = "https://github.com/makspll/bevy_mod_scripting"
homepage = "https://github.com/makspll/bevy_mod_scripting"
keywords = ["bevy", "gamedev", "scripting", "rhai"]
categories = ["game-development"]
readme="readme.md"
readme = "readme.md"

[package.metadata."docs.rs"]
features = ["lua54"]

[package.metadata.release]
pre-release-replacements = [
{file="Cargo.toml", search='^version\s*=\s*.*$', replace="version = \"{{version}}\"", exactly=1},
{file="Cargo.toml", search='^(?P<h>bevy_mod_scripting_core\s*=.*)version\s*=\s*".*"(?P<t>.*)$', replace="${h}version = \"{{version}}\"${t}", exactly=1},
{ file = "Cargo.toml", search = '^version\s*=\s*.*$', replace = "version = \"{{version}}\"", exactly = 1 },
{ file = "Cargo.toml", search = '^(?P<h>bevy_mod_scripting_core\s*=.*)version\s*=\s*".*"(?P<t>.*)$', replace = "${h}version = \"{{version}}\"${t}", exactly = 1 },
]
enable-features = ["lua54"]

Expand All @@ -39,16 +39,19 @@ mlua_macros = ["tealr/mlua_macros"]
mlua_async = ["tealr/mlua_async"]

[lib]
name="bevy_mod_scripting_lua"
path="src/lib.rs"
name = "bevy_mod_scripting_lua"
path = "src/lib.rs"

[dependencies]
bevy= { version = "0.11", default-features = false}
bevy_mod_scripting_core = {path="../../bevy_mod_scripting_core", version = "0.3.0" }
bevy = { version = "0.11", default-features = false }
bevy_mod_scripting_core = { path = "../../bevy_mod_scripting_core", version = "0.3.0" }
#Git pin required for v0.9.0-alpha4 dependancy, without it 0.9.1 is pulled
tealr = {git="https://github.com/lenscas/tealr.git", rev="05c9cdbace8abb6c12fc200e03a7ffcc5afff308", features=["mlua_vendored","mlua_send"]}
tealr = { git = "https://github.com/lenscas/tealr.git", rev = "05c9cdbace8abb6c12fc200e03a7ffcc5afff308", features = [
"mlua_vendored",
"mlua_send",
] }
tealr_derive = { git = "https://github.com/lenscas/tealr.git", rev = "05c9cdbace8abb6c12fc200e03a7ffcc5afff308" }

parking_lot = "0.12.1"
serde_json = "1.0.81"
serde = { version = "1", features = ["derive"] }


0 comments on commit 48d8012

Please sign in to comment.