Skip to content

Commit 4302d57

Browse files
committed
feat: Add Lua 5.5 to feature handling passed to mlua
1 parent 5b7422a commit 4302d57

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/luarocks/build/rust-mlua.lua

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ function mlua.run(rockspec, no_install)
1616
local lua_version = cfg.lua_version
1717

1818
-- Activate features depending on Lua version
19-
if lua_version == "5.4" then
19+
if lua_version == "5.5" then
20+
table.insert(features, "lua55")
21+
elseif lua_version == "5.4" then
2022
table.insert(features, "lua54")
2123
elseif lua_version == "5.3" then
2224
table.insert(features, "lua53")

0 commit comments

Comments
 (0)