ziglua icon indicating copy to clipboard operation
ziglua copied to clipboard

Zig bindings for the Lua C API

Results 20 ziglua issues
Sort by recently updated
recently updated
newest added

Also prefix the other errors with Lua Not sure yet, but it seems that would be a good way to namespace things?

This lists the changes I want to make before releasing a 1.0.0. At a high level, I want Ziglua to be in a state that is more easily maintained, and...

feature

When compiling the library with luajit it literally just broke: ``` :1:1: error: too many errors emitted, stopping now ``` I can't know if this error is on other platforms...

The luajit and lua51 internal API didn't take a `mode` variable, meaning the function signature was different between these two versions and lua 5.2+. Add an unused `Mode` to the...

In addition to using the `@import("ziglua")` module from zig code, I need to compile additional C extensions which depend on the headers for the correct lua version as exposed by...

Hi, I'm new to zig and want to find a way to make Lua C module in zig, I found this great repo but I don't know how to use...

Hey, I'm using your ziglua project to devendor lua in my redis fork. However, the vendored lua exposes two additional functions that it seems upstream doesn't otherwise expose (https://github.com/terrablue/zkv/blob/master/deps/lua/src/lua.h#L361-L362). Would...

feature

The recent autodocs changes broke the documentation building step

From a quick glance at the Lua sources, it may be possible to override the use of assert.h for the API check with a custom function. If so, this would...