File tree 3 files changed +4
-1
lines changed
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"
40
40
pkg-config = " 0.3.17"
41
41
lua-src = { version = " >= 547.0.0, < 547.1.0" , optional = true }
42
42
luajit-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 }
44
44
45
45
[lints .rust ]
46
46
unexpected_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" {
185
185
186
186
pub fn lua_pushlightuserdatatagged ( L : * mut lua_State , p : * mut c_void , tag : c_int ) ;
187
187
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 ;
188
189
pub fn lua_newuserdatadtor ( L : * mut lua_State , sz : usize , dtor : lua_Udestructor ) -> * mut c_void ;
189
190
190
191
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";
13
13
pub const LUA_UTF8LIBNAME : & str = "utf8" ;
14
14
pub const LUA_MATHLIBNAME : & str = "math" ;
15
15
pub const LUA_DBLIBNAME : & str = "debug" ;
16
+ pub const LUA_VECLIBNAME : & str = "vector" ;
16
17
17
18
extern "C-unwind" {
18
19
pub fn luaopen_base ( L : * mut lua_State ) -> c_int ;
@@ -25,6 +26,7 @@ extern "C-unwind" {
25
26
pub fn luaopen_utf8 ( L : * mut lua_State ) -> c_int ;
26
27
pub fn luaopen_math ( L : * mut lua_State ) -> c_int ;
27
28
pub fn luaopen_debug ( L : * mut lua_State ) -> c_int ;
29
+ pub fn luaopen_vector ( L : * mut lua_State ) -> c_int ;
28
30
29
31
// open all builtin libraries
30
32
pub fn luaL_openlibs ( L : * mut lua_State ) ;
You can’t perform that action at this time.
0 commit comments