Alex Orlenko

Results 128 comments of Alex Orlenko

Similar to https://github.com/khvzak/mlua/issues/85 Could you try to follow the steps from the linked issue.

I'm afraid Luau does not support binary modules at all. What is your os? Could you try to add "vendored" feature?

Could you please explain more? What did you mean under "user type references" and serialization of them? There are few places where `TypeId` is used. 1) To attach arbitrary data...

A first example is from github actions where I test Lua modules on Windows: https://github.com/khvzak/mlua/blob/master/.github/workflows/main.yml#L186 A second example is using Windows + MSVC 1) Download binary Lua dll & lib...

The line `let lua = unsafe {Lua::new()};` should be replaced with `let lua = unsafe { Lua::unsafe_new() };` to allow loading C modules

The panic is generated by the [`lua-src`](https://github.com/khvzak/lua-src-rs) crate. So it should be a first place for a fix. Personally, I don't have any objections having lua for the `wasm32` target,...

I plan soon to start porting Lua 5.3 from C to Rust which should bring `wasm32-unknown-unknown` as well as `no_std` (hopefully) support to mlua. Seems it's the only way (apart...

There are many attempts to implement Lua on pure Rust but unfortunately all of them are not finished and/or ready for production use. Currently I work on my own implementation...

`serde::Serialize` and `serde::Deserialize` cannot be `dyn`.

I'm not sure that I got your request. You're free to implement `ToLua`/`FromLua` for your types.