summaryrefslogtreecommitdiff
path: root/src/lua.rs
AgeCommit message (Expand)Author
2021-04-27Add `UserDataFields` API.Alex Orlenko
2021-04-16Serialize only known (registered) userdata.Alex Orlenko
2021-04-15Improve panic handling (check for twice resumed panics)Alex Orlenko
2021-03-03Optimise async callbacks (polling)Alex Orlenko
2021-03-03Fix bug in returning nil-prefixed multi values from async functionAlex Orlenko
2021-02-22Remove `registered_userdata_mt` checkAlex Orlenko
2021-02-21Optimize callbacksAlex Orlenko
2021-02-21Fix scoped async destruction of partially polled futuresAlex Orlenko
2020-12-31Update documentationAlex Orlenko
2020-12-29Add serialization example & update othersAlex Orlenko
2020-12-22Don't try to disable c modules without `package` loaded. Fix #24Alex Orlenko
2020-12-14Serde support (serialize feature flag)Alex Orlenko
2020-07-30Update `set_memory_limit` docAlex Orlenko
2020-07-28Fix compilation warnings on nightly rustAlex Orlenko
2020-07-28Add ChunkMode enum to mark chunks as text or binaryAlex Orlenko
2020-07-27Add Function::dump() to dump lua function to a binary chunkAlex Orlenko
2020-07-27Make Lua::load load binary chunks when unsafeEidolon
2020-06-080.4.1 releaseAlex Orlenko
2020-06-07Enable hooks support for LuaJITAlex Orlenko
2020-06-07Fix LuaJIT 2.1 libraries loadingAlex Orlenko
2020-06-07Refactor main_state handlingAlex Orlenko
2020-06-06Dirty hack to get lua 5.1 main stateAlex Orlenko
2020-06-06Add hooks support (based on rlua v0.17 implementation)Alex Orlenko
2020-06-06Update docsAlex Orlenko
2020-06-06Add LuaJIT 2.0.5 stable supportAlex Orlenko
2020-05-15Update documentationAlex Orlenko
2020-05-15Add clippy check and fix clippy warningsAlex Orlenko
2020-05-12Provide safe and unsafe Lua modes:Alex Orlenko
2020-05-12Use Rust allocator for new Lua states that allows to set memory limitAlex Orlenko
2020-05-11Add Lua 5.4 (rc2) supportAlex Orlenko
2020-05-11Scope support (including async)Alex Orlenko
2020-05-11Hide Lua "Send" capability under the optional "send" feature flagAlex Orlenko
2020-05-11Add Send capability to LuaAlex Orlenko
2020-05-11Bind Futures lifetimes to 'lua rather than 'static.Alex Orlenko
2020-05-11Don't allow 'callback outlive 'luaAlex Orlenko
2020-04-28Get yield function in the moment of async callback creation.Alex Orlenko
2020-04-19Minor refactorAlex Orlenko
2020-04-18Add family of `call_async` functionAlex Orlenko
2020-04-17v0.3.0-alpha.1 with async supportAlex Orlenko
2019-12-26Add support of loading a specified set of standard librariesAlex Orlenko
2019-11-30Add Lua 5.2 supportAlex Orlenko
2019-11-04Move lua 5.1 support under new "lua51" featureAlex Orlenko
2019-11-04Fix examples and docsAlex Orlenko
2019-10-17Impl Drop for LuaAlex Orlenko
2019-10-17Don't store extra data in the lua_State extra spaceAlex Orlenko
2019-10-17Lua 5.1 supportAlex Orlenko
2019-10-02Add mlua_derive proc macro moduleAlex Orlenko
2019-10-01Rename to mluaAlex Orlenko
2019-09-30Use main state to store extra data and auxiliary registriesAlex Orlenko
2019-09-29Allow to catch rust panics via pcallAlex Orlenko