summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-05-15Update CHANGELOGAlex Orlenko
2024-05-15clippyAlex Orlenko
2024-05-14Fix serializing same table multiple times.Alex Orlenko
Fixes #408
2024-05-04mlua-sys: v0.6.0Alex Orlenko
2024-05-04Add `Lua::set_fflag()` to control Luau feature flagsAlex Orlenko
2024-05-04Mark `lua_Callbacks` as non exhaustive (Luau)Alex Orlenko
2024-05-04Update `luau-src` to v0.9Alex Orlenko
Mark `lua_CompileOptions` as non exhaustive
2024-04-18Fix module imports for export (#394)Joris Willems
2024-04-17update build script to fix cross compilation of windows dlls from unix (#397)Eric Stokes
2024-04-05mlua-sys: v0.5.2Alex Orlenko
2024-04-05v0.9.7Alex Orlenko
2024-04-05Cosmetic changes for clippyAlex Orlenko
2024-04-05Minor improvements in serializing:Alex Orlenko
Use `&str` instead of creating Lua string when serializing tuple variant and struct variant
2024-04-05Add `Lua::create_ser_any_userdata()` functionAlex Orlenko
2024-03-28Implement `push_into_stack`/`from_stack` for `Option<T>`Alex Orlenko
2024-03-28Better Luau buffer type support.Alex Orlenko
- Add `Lua::create_buffer()` function - Support serializing buffer type as a byte slice - Support accessing copy of underlying bytes using `BString`
2024-03-25chore: make clippy happy (#388)Yiyu Lin
Co-authored-by: hzlinyiyu <hzlinyiyu@corp.netease.com>
2024-03-23Add deserialize json benchmarkAlex Orlenko
2024-03-23Do not use dependencies as implicit features.Alex Orlenko
Add `dep:` prefix instead.
2024-03-23Suppress Rust 1.77 dead_code false warnings.Alex Orlenko
2024-03-23Add `SerializeOptions::detect_serde_json_arbitrary_precision` to detect ↵Alex Orlenko
`serde_json::Number` with `arbitrary_precision` and convert it to Lua number. By default the option is disabled and such numbers represented as Lua objects with `$serde_json::private::Number` key. Fixes #385
2024-03-22Bump rustyline to 14.0Alex Orlenko
2024-03-22Update hyper examplesAlex Orlenko
2024-03-21update hyper to v1, and add shell command example (#384)19年梦醒
Co-authored-by: Alex Orlenko <zxteam@protonmail.com>
2024-03-21Update `reqwest` to 0.12Alex Orlenko
2024-03-21Add `Function::deep_clone()` (Luau only)Alex Orlenko
2024-03-20Remove redundant "match" when checking userdata type via `AnyUserData::is`.Alex Orlenko
Fixes #386
2024-03-20Make `__idiv` metamethod available for luauAlex Orlenko
Closes #383
2024-03-16Assert that `luau_compile` returns non-null pointer.Alex Orlenko
Fixes #381
2024-02-29Implement `IntoLua` for `RegistryKey`Alex Orlenko
2024-02-29v0.9.6Alex Orlenko
2024-02-29Add `LUA_TCDATA` to `util::to_string()` helperAlex Orlenko
2024-02-11Optimize table array traversal during serializationAlex Orlenko
2024-02-11Refactor benchmarksAlex Orlenko
2024-02-10Impl `FromLua` for `RegistryKey`Alex Orlenko
2024-02-07Implement `IntoLua` for `&Value`Alex Orlenko
2024-02-03Impl `IntoLua::push_into_stack` for integersAlex Orlenko
2024-02-02Add `REF_STACK_RESERVE` constantAlex Orlenko
2024-02-02Add `to_pointer` function to `Function`/`Table`/`Thread`Alex Orlenko
2024-02-01Impl push_into_stack for StdResultAlex Orlenko
2024-01-27Add inline to FromLua<bool>::from_stackAlex Orlenko
2024-01-27Fix crash when initializing Luau sandbox without stdlibs (#361)Alex Orlenko
2024-01-26Add fastpath `push_into_stack`/`from_stack` methods for `bool` typeAlex Orlenko
2024-01-26Add `Lua::push()` helperAlex Orlenko
2024-01-25v0.9.5Alex Orlenko
2024-01-25Update compile tests messagesAlex Orlenko
2024-01-25Impl Into/FromLua for `OwnedString`Alex Orlenko
2024-01-25Update authorsAlex Orlenko
2024-01-25Update itertools dependencyAlex Orlenko
2024-01-25Fix `FromLua` derive proc macro to cover more casesAlex Orlenko