rust-lua53 icon indicating copy to clipboard operation
rust-lua53 copied to clipboard

Lua 5.3 bindings for Rust

Results 21 rust-lua53 issues
Sort by recently updated
recently updated
newest added

Hi, when I try to compile the crate I do get the following error: ``` --- stdout cargo:rustc-link-lib=static=lua OPT_LEVEL = Some("0") TARGET = Some("x86_64-pc-windows-gnu") HOST = Some("x86_64-pc-windows-gnu") TARGET = Some("x86_64-pc-windows-gnu")...

I've used this crate for some time in the past (about 2 years ago), and all was working normally. But now I can't build a simple test program using this...

The cernan use-case for lua is one that does not use readline. On systems that attempt to statically linked cernan against MUSL libc the readline dependency breaks the build on...

This example for function [State::new_userdata_typed](https://docs.rs/lua/0.0.10/lua/struct.State.html#method.new_userdata_typed) is only correct if MyStruct does not have a destructor. The correct way to move a value into an uninitialized location is [`std::ptr::write`](https://doc.rust-lang.org/nightly/std/ptr/fn.write.html) The given...

This code takes segfault: ``` rust extern crate lua; use lua::*; fn main() { let mut thread = { let mut state = State::new(); state.new_thread() }; thread.do_string(r#"print("Hello, segfault!")"#); } ```...

bug

When compiling a dll via cargo targeting stable-x86_64-pc-windows-gnu the linker fails to include the correct functions. Instead it only links lua funcitons in the dll. I came across this when...

I'm trying to use a host program which embeds lua using `rust-lua53` when some of the scripts import modules which are also written using `rust-lua53`. The problem seems to be...

This is a separate error from #84. This occurs on both OS X and Linux. In the code snippet below: `serpent` is a regular Lua module and `lfs` (luafilesystem) is...

Lua uses ANSI C, so MSVC can compile it and Rust supports MSVC ABI. **Feature:** Add possibility to compile library within Visual Studio environment.

enhancement

This is just a skeleton code for #82 Currently, it's mostly unimplemented I'm sharing it with you so you can take a glance and give some recommendations before I've written...