Skip to content

Commit 7268219

Browse files
committed
Bump Luau to 0.667
1 parent 87fa663 commit 7268219

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mlua-sys/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ cfg-if = "1.0"
4040
pkg-config = "0.3.17"
4141
lua-src = { version = ">= 547.0.0, < 547.1.0", optional = true }
4242
luajit-src = { version = ">= 210.5.0, < 210.6.0", optional = true }
43-
luau0-src = { version = "0.12.0", optional = true }
43+
luau0-src = { version = "0.13.0", optional = true }
4444

4545
[lints.rust]
4646
unexpected_cfgs = { level = "allow", check-cfg = ['cfg(raw_dylib)'] }

mlua-sys/src/luau/lua.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ extern "C-unwind" {
290290
pub fn lua_setuserdatatag(L: *mut lua_State, idx: c_int, tag: c_int);
291291
pub fn lua_setuserdatadtor(L: *mut lua_State, tag: c_int, dtor: Option<lua_Destructor>);
292292
pub fn lua_getuserdatadtor(L: *mut lua_State, tag: c_int) -> Option<lua_Destructor>;
293-
pub fn lua_setuserdatametatable(L: *mut lua_State, tag: c_int, idx: c_int);
293+
pub fn lua_setuserdatametatable(L: *mut lua_State, tag: c_int);
294294
pub fn lua_getuserdatametatable(L: *mut lua_State, tag: c_int);
295295
pub fn lua_setlightuserdataname(L: *mut lua_State, tag: c_int, name: *const c_char);
296296
pub fn lua_getlightuserdataname(L: *mut lua_State, tag: c_int) -> *const c_char;

0 commit comments

Comments
 (0)