factorio-mlua 0.8.0

High level bindings to Lua 5.4/5.3/5.2/5.1 (including LuaJIT) and Roblox Luau with async/await features and support of writing native Lua modules in Rust. Fork with added Factorio Lua support.
Documentation
error[E0373]: closure may outlive the current function, but it borrows `test`, which is owned by the current function
  --> tests/compile/scope_invariance.rs:14:38
   |
9  |     lua.scope(|scope| {
   |                ----- has type `&mlua::Scope<'_, '1>`
...
14 |                 .create_function_mut(|_, ()| {
   |                                      ^^^^^^^ may outlive borrowed value `test`
15 |                     test.field = 42;
   |                     ---------- `test` is borrowed here
   |
note: function requires argument type to outlive `'1`
  --> tests/compile/scope_invariance.rs:13:13
   |
13 | /             scope
14 | |                 .create_function_mut(|_, ()| {
15 | |                     test.field = 42;
16 | |                     //~^ error: `test` does not live long enough
17 | |                     Ok(())
18 | |                 })?
   | |__________________^
help: to force the closure to take ownership of `test` (and any other referenced variables), use the `move` keyword
   |
14 |                 .create_function_mut(move |_, ()| {
   |                                      ++++