| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2026-01-27 | 565 Bytes | |
| v0.11.6 source code.tar.gz | 2026-01-27 | 292.6 kB | |
| v0.11.6 source code.zip | 2026-01-27 | 396.2 kB | |
| Totals: 3 Items | 689.4 kB | 3 | |
What's Changed
- Lua 5.5 support under the new
lua55feature flag - Luau updated to 0.705+
- Added
AnyUserData::is_proxy - Added
num_params,num_upvalues,is_varargtoFunctionInfo
Full Changelog: https://github.com/mlua-rs/mlua/compare/v0.11.5...v0.11.6
Lua 5.5 notes
Lua 5.5 support external strings and mlua enable this optimisation for impl IntoLua for String/BString (owned versions to move Drop into Lua).
Also the Lua::create_external_string function allow moving ownership to Lua for any Into<Vec<u8>> types.