We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b7422a commit 4302d57Copy full SHA for 4302d57
1 file changed
src/luarocks/build/rust-mlua.lua
@@ -16,7 +16,9 @@ function mlua.run(rockspec, no_install)
16
local lua_version = cfg.lua_version
17
18
-- Activate features depending on Lua version
19
- if lua_version == "5.4" then
+ if lua_version == "5.5" then
20
+ table.insert(features, "lua55")
21
+ elseif lua_version == "5.4" then
22
table.insert(features, "lua54")
23
elseif lua_version == "5.3" then
24
table.insert(features, "lua53")
0 commit comments