Skip to content

Releases: mlua-rs/mlua

v0.9.6

29 Feb 22:21
270b98a
Compare
Choose a tag to compare

Changes:

  • Added to_pointer function to Function/Table/Thread
  • Implemented IntoLua for &Value
  • Implemented FromLua for RegistryKey
  • Faster (~5%) table array traversal during serialization
  • Some performance improvements for bool/int types

Full Changelog: v0.9.5...v0.9.6

v0.9.5

25 Jan 23:33
75a15ce
Compare
Choose a tag to compare

Changes:

  • Minimal Luau updated to 0.609
  • Luau max stack size increased to 1M (from 100K)
  • Implemented IntoLua for refs to String/Table/Function/AnyUserData/Thread + RegistryKey
  • Implemented IntoLua and FromLua for OwnedThread/OwnedString (unstable feature)
  • Fixed FromLua derive proc macro to cover more cases