summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2022-04-03v0.8.0-beta.3Alex Orlenko
2022-04-03Fix doc testAlex Orlenko
2022-03-31Add `set_mutable_globals` to Luau compilerAlex Orlenko
2022-03-31Move some Luau functionality to a new moduleAlex Orlenko
Immplement native "vector" function to construct vectors
2022-03-31Add vector_lib/vector_ctor options to Luau Compiler (hidden)Alex Orlenko
2022-03-31Fix testsAlex Orlenko
2022-03-31Increase internal caches sizeAlex Orlenko
2022-03-30Make LuaHook as Fn instead of FnMut to remove Mutex and improve performanceAlex Orlenko
2022-03-30Support Luau interrupts (closes #138)Alex Orlenko
2022-03-28Sandboxing supportAlex Orlenko
2022-03-26Remove Lua::into_static/from_staticAlex Orlenko
2022-03-25Update docsAlex Orlenko
2022-03-23Enable Thread::reset for LuauAlex Orlenko
2022-03-23Use `lua_xpush` for LuauAlex Orlenko
2022-03-22Support `readonly` table attribute (luau)Alex Orlenko
2022-03-22Add Luau vector datatype supportAlex Orlenko
2022-03-22Fix clippy warningsAlex Orlenko
2022-03-21Prepare v0.8.0-beta.1Alex Orlenko
2022-03-21Add `require` function to LuauAlex Orlenko
2022-03-21Move StaticUserData* implementation from `lua` module to the new `userdata_impl`Alex Orlenko
2022-03-21Replace compat53_countlevels with lua_stackdepth for LuauAlex Orlenko
2022-03-21Update to luau 0.519Alex Orlenko
2022-03-21Return binary chunks support in safe mode.Alex Orlenko
Lua has many ways to load binary bytecode and this restriction was easy to bypass.
2022-03-21Move chunks structs to a new module.Alex Orlenko
Add Luau Compiler interface to compile sources.
2022-03-21Enable `Lua::inspect_stack` for LuauAlex Orlenko
2022-03-21Update luaL_traceback for LuauAlex Orlenko
2022-03-21Fix __index and __newindex wrappers for LuauAlex Orlenko
2022-03-20More ffi module refactoringAlex Orlenko
2022-03-20Initial Luau supportAlex Orlenko
2022-03-20Refactor ffi moduleAlex Orlenko
Initial Luau support work
2022-03-20Fix async userdata __index, __newindex metamethodsTarik02
2022-03-01v0.7.4Alex Orlenko
2022-02-15Update `create_registry_value` docAlex Orlenko
2022-02-14Optimize `Lua::create_registry_value` by reusing previously expired registry ↵Alex Orlenko
keys.
2022-02-14Add Lua::replace_registry_valueAlex Orlenko
2022-02-12Recognize LuaJIT TCDATA type to generate correct panic message.Alex Orlenko
Relates to #127 Should be fixed in a next major release by adding support of TCDATA type.
2022-02-12Grow/check Lua stack in unpackAlex Orlenko
2022-01-29Optimize async calls:Alex Orlenko
Rewrite "unpack" function using C api rather than high level abstraction.
2022-01-19v0.7.3Alex Orlenko
2022-01-17v0.7.2Alex Orlenko
2022-01-16Always restore original Lua state after creating Future in async call.Alex Orlenko
Fixes #121
2022-01-08Pass Box wrapped pointer to allocator fn instead of referenceAlex Orlenko
2021-12-28Fix clippy warningsAlex Orlenko
2021-12-23v0.7.1Alex Orlenko
2021-12-23Generate traceback from level 0 (instead of 1)Alex Orlenko
Fixes #112
2021-12-01Hide (doc) into_static/from_static methodsAlex Orlenko
2021-11-30Update lifetimes for few functions in LuaAlex Orlenko
2021-11-25v0.7.0Alex Orlenko
2021-11-25Update docsAlex Orlenko
2021-11-25More performance optimizationsAlex Orlenko