Age | Commit message (Expand) | Author |
2020-01-07 | Implement PartialEq trait for Value (and subtypes) | Alex Orlenko |
2019-11-30 | Add pair and ipair metamethods support (lua 5.2/5.3 only) | Alex Orlenko |
2019-11-30 | Add Lua 5.2 support | Alex Orlenko |
2019-11-04 | Move lua 5.1 support under new "lua51" feature | Alex Orlenko |
2019-11-04 | Fix examples and docs | Alex Orlenko |
2019-10-17 | Lua 5.1 support | Alex Orlenko |
2019-10-01 | Rename to mlua | Alex Orlenko |
2019-09-29 | Backport changes from rlua 0.16 (master branch) | Alex Orlenko |
2018-10-01 | Allow non-utf8 Lua source in load / exec / eval | kyren |
2018-09-04 | code re-org have slightly less pub(crate) items | kyren |
2018-09-04 | Initial design for non-'static scoped userdata | kyren |
2018-08-05 | format with up-to-date rustfmt | kyren |
2018-03-19 | Small renames and comments to better communicate the intention of stack check... | kyren |
2018-03-19 | Where possible, don't call to_lua / from_lua / to_lua_multi / from_lua_multi ... | kyren |
2018-03-19 | Clean up some lifetime specification | kyren |
2018-03-12 | Do not crash in release when accessing an AnyUserData | kyren |
2018-03-12 | Move several asserts to only be active with debug, bump alpha version number | kyren |
2018-03-12 | Remove `stack_guard` function and instead just use StackGuard directly | kyren |
2018-03-12 | Merge branch 'bench' | kyren |
2018-03-11 | A lot of performance changes. | kyren |
2018-03-10 | Improve documentation about __index vs regular methods | kyren |
2018-03-08 | Simplify stack_guard / stack_err_guard | kyren |
2018-03-08 | Change strategies for handling the Lua stack during panics | kyren |
2018-02-12 | Some changes for panic correctness, stack usage correctness, and speed | kyren |
2018-02-11 | Add `UserDataMethods::` `add_function_mut` and `add_meta_function_mut` | kyren |
2018-02-11 | It's far too easy to write 'stack_guard' as opposed to 'stack_err_guard'! | kyren |
2018-02-11 | shave this yak some more, make `Callback` type alias have two lifetimes | kyren |
2018-02-09 | Move all tests into a tests/ subfolder | kyren |
2018-02-09 | Error correctly on too many arguments / returns / binds / recursions | kyren |
2018-02-07 | Don't panic with "rlua internal error" message on panics that are not internal | kyren |
2018-02-06 | Lots of changes, not sure if actually safe yet. | kyren |
2018-02-06 | Slightly different strategy with RegistryKey values | kyren |
2018-02-05 | Set the metatable of __gc'ed userdata to something more informative | kyren |
2018-01-27 | Simplify handling of userdata __gc and resurrected userdata. | kyren |
2018-01-26 | Add an API that exposes the functionality of `lua_getuservalue` and `lua_setu... | kyren |
2018-01-26 | __gc would be safe now, reword MetaMethod docs accordingly | Jonas Schievink |
2018-01-26 | Additional `MetaMethod` docs | Jonas Schievink |
2018-01-21 | Experimentally use the `failure` crate for errors | kyren |
2017-12-04 | Add `ExpiredUserData` error and avoid what was previously a panic | kyren |
2017-12-04 | more reorganization in an attempt to shrink the size of lua.rs | kyren |
2017-12-04 | Move function and thread into their own modules, auto-formatting | kyren |
2017-12-03 | I believe this is all the external API changes necessary for 'm' safety | kyren |
2017-12-03 | auto formatting | kyren |
2017-12-02 | auto-formatting | kyren |
2017-10-23 | auto-formatting | kyren |
2017-10-14 | Cleanups of userdata handling, particularly around callbacks | kyren |
2017-09-30 | more reorganization, move simple type defines to types.rs module | kyren |
2017-09-30 | move userdata tests into userdata.rs | kyren |
2017-09-30 | crudely move LightUserData/UserData/AnyUserData to their own module | kyren |