High level bindings to Lua 5.5/5.4/5.3/5.2/5.1 (including LuaJIT) and Luau
with async/await features and support of writing native Lua modules in Rust.
local result1 = require("./dependency")
local result2 = require("./dependency")
assert(result1 == result2, "expect the same result when requiring the same module twice")
return {}