Skip to content

Commit 952e453

Browse files
authored
Switched to git dependancy pin rather than patch for tealr (#92)
Switched to git specified pin rather than patch pin
1 parent 857712a commit 952e453

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

Cargo.toml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,6 @@ path = "src/documentation/main.rs"
2020
name = "bevy_mod_scripting"
2121
path = "src/lib.rs"
2222

23-
24-
[patch.crates-io]
25-
#Patch required for v0.9.0-alpha4 dependancy, unless cargo can be convinced to hard-pin to it.
26-
tealr = {git="https://github.com/lenscas/tealr.git", rev="05c9cdbace8abb6c12fc200e03a7ffcc5afff308"}
27-
2823
[package.metadata."docs.rs"]
2924
features = ["lua", "lua54", "rhai", "lua_script_api", "rhai_script_api", "teal"]
3025

languages/bevy_mod_scripting_lua/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ path="src/lib.rs"
4545
[dependencies]
4646
bevy= { version = "0.11", default-features = false}
4747
bevy_mod_scripting_core = {path="../../bevy_mod_scripting_core", version = "0.3.0" }
48-
tealr = { version = "=0.9.0-alpha4", features=["mlua_vendored","mlua_send"]}
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"]}
4950
parking_lot = "0.12.1"
5051
serde_json = "1.0.81"
5152
serde = { version = "1", features = ["derive"] }

0 commit comments

Comments
 (0)