Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-09-16 | v0.6.3 | Alex Orlenko | |
2021-09-15 | Add `DeserializeOptions` struct to control deserializer behavior. | Alex Orlenko | |
This solves #74 and provides a way to deserialize a Lua globals table. | |||
2021-08-17 | Add `Debug::event()` to the hook's Debug structure | Alex Orlenko | |
2021-07-13 | v0.6.2 | Alex Orlenko | |
2021-07-05 | Add new functions: `lua.load_from_function()` and `lua.create_c_function()` | Alex Orlenko | |
This should be useful to register embedded C modules to Lua state. Provides a solution for #61 | |||
2021-06-28 | v0.6.1 | Alex Orlenko | |
2021-06-28 | Update chunk! documentation | Alex Orlenko | |
2021-06-21 | v0.6.0 | Alex Orlenko | |
2021-06-04 | v0.6.0-beta.3 | Alex Orlenko | |
2021-05-13 | v0.6.0-beta.2 | Alex Orlenko | |
2021-05-09 | Re-export UserDataFields/UserDataMetatable | Alex Orlenko | |
2021-05-05 | Add chunk! macro support | Alex Orlenko | |
2021-05-04 | v0.6.0-beta.1 | Alex Orlenko | |
2021-05-03 | Update code docs | Alex Orlenko | |
2021-05-03 | Add `LuaOptions` to customize Lua/Rust behaviour. | Alex Orlenko | |
The only option is `catch_rust_panics` to optionally disable catching Rust panics via pcall/xpcall. | |||
2021-04-27 | Hide Deserializer inner fields | Alex Orlenko | |
Improve documentation | |||
2021-04-27 | Add SerializeOptions to to change default Lua serializer behaviour | Alex Orlenko | |
2021-04-27 | Add `UserDataFields` API. | Alex Orlenko | |
Provide safe access to UserData metatable and allow to define custom metamethods.. | |||
2021-04-20 | v0.5.4 | Alex Orlenko | |
2021-03-04 | v0.5.3 | Alex Orlenko | |
2021-02-27 | v0.5.2 | Alex Orlenko | |
2021-01-20 | v0.5.1 | Alex Orlenko | |
2020-12-31 | v0.5.0 | Alex Orlenko | |
2020-12-31 | Update documentation | Alex Orlenko | |
2020-12-29 | Re-export mlua_derive | Alex Orlenko | |
2020-12-14 | Serde support (serialize feature flag) | Alex Orlenko | |
2020-07-28 | Add ChunkMode enum to mark chunks as text or binary | Alex Orlenko | |
2020-06-07 | Enable hooks support for LuaJIT | Alex Orlenko | |
2020-06-06 | Add hooks support (based on rlua v0.17 implementation) | Alex Orlenko | |
This feature works on lua54, lua53, lua52 and lua51 only. LuaJIT is unstable. | |||
2020-05-15 | Update documentation | Alex Orlenko | |
2020-05-11 | Add Lua 5.4 (rc2) support | Alex Orlenko | |
2020-05-11 | Scope support (including async) | Alex Orlenko | |
2020-04-20 | Update documentation | Alex Orlenko | |
2020-04-19 | Add TableExt trait with call_method/function methods | Alex Orlenko | |
2020-04-17 | v0.3.0-alpha.1 with async support | Alex Orlenko | |
Squashed commit of the async branch. | |||
2019-12-26 | Add support of loading a specified set of standard libraries | Alex Orlenko | |
2019-10-01 | Rename to mlua | Alex Orlenko | |
2019-09-29 | cargo fmt | Alex Orlenko | |
2019-09-29 | Backport changes from rlua 0.16 (master branch) | Alex Orlenko | |
2019-09-26 | Allow only init Lua from an exiting state | Alex Orlenko | |
2018-10-01 | Some documentation and changelog fixes | kyren | |
2018-09-24 | Return rlua::Error on out of range numeric conversions using num_traits::cast | kyren | |
2018-09-16 | Move integration tests into top-level tests directory | kyren | |
other minor refactors | |||
2018-08-05 | format with up-to-date rustfmt | kyren | |
2018-03-12 | Documentation improvements, split scope into its own module, improved tests | kyren | |
Also makes `Lua` and associated types !UnwindSafe and !RefUnwindSafe, which they should be because they are intensely internally mutable. Lua IS still panic safe, but that doesn't mean it should be marked as UnwindSafe (as I understand it). | |||
2018-02-19 | Remove terrible awful no-good evil hack | kyren | |
The breakage is being addressed in rust itself. | |||
2018-02-16 | Can.. can I do this? Is this a thing that actually works? | kyren | |
Drastic times and all that. | |||
2018-02-15 | Provisional "fix" for #71. Requires nightly :( | kyren | |
2018-02-08 | export accidentally hidden `Scope` type | kyren | |
2018-01-26 | ACTUALLY expose `RegistryKey` API | kyren | |
Also fixes a safety issue with RegistryKey, where you could use RegistryKeys with mismatching Lua instances. |