File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed
Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ cfg-if = "1.0"
4040pkg-config = " 0.3.17"
4141lua-src = { version = " >= 547.0.0, < 547.1.0" , optional = true }
4242luajit-src = { version = " >= 210.5.0, < 210.6.0" , optional = true }
43- luau0-src = { version = " 0.11.0 " , optional = true }
43+ luau0-src = { version = " 0.11.1 " , optional = true }
4444
4545[lints .rust ]
4646unexpected_cfgs = { level = " allow" , check-cfg = [' cfg(raw_dylib)' ] }
Original file line number Diff line number Diff line change @@ -185,6 +185,7 @@ extern "C-unwind" {
185185
186186 pub fn lua_pushlightuserdatatagged ( L : * mut lua_State , p : * mut c_void , tag : c_int ) ;
187187 pub fn lua_newuserdatatagged ( L : * mut lua_State , sz : usize , tag : c_int ) -> * mut c_void ;
188+ pub fn lua_newuserdatataggedwithmetatable ( L : * mut lua_State , sz : usize , tag : c_int ) -> * mut c_void ;
188189 pub fn lua_newuserdatadtor ( L : * mut lua_State , sz : usize , dtor : lua_Udestructor ) -> * mut c_void ;
189190
190191 pub fn lua_newbuffer ( L : * mut lua_State , sz : usize ) -> * mut c_void ;
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ pub const LUA_BUFFERLIBNAME: &str = "buffer";
1313pub const LUA_UTF8LIBNAME : & str = "utf8" ;
1414pub const LUA_MATHLIBNAME : & str = "math" ;
1515pub const LUA_DBLIBNAME : & str = "debug" ;
16+ pub const LUA_VECLIBNAME : & str = "vector" ;
1617
1718extern "C-unwind" {
1819 pub fn luaopen_base ( L : * mut lua_State ) -> c_int ;
@@ -25,6 +26,7 @@ extern "C-unwind" {
2526 pub fn luaopen_utf8 ( L : * mut lua_State ) -> c_int ;
2627 pub fn luaopen_math ( L : * mut lua_State ) -> c_int ;
2728 pub fn luaopen_debug ( L : * mut lua_State ) -> c_int ;
29+ pub fn luaopen_vector ( L : * mut lua_State ) -> c_int ;
2830
2931 // open all builtin libraries
3032 pub fn luaL_openlibs ( L : * mut lua_State ) ;
You can’t perform that action at this time.
0 commit comments