add minimum_zig_version field

This commit is contained in:
Andrew Kelley 2025-05-16 15:55:52 -07:00
parent 0b43bb0279
commit 5a5a4135cb
2 changed files with 2 additions and 5 deletions

View file

@ -1,9 +1,6 @@
# Lua # Lua
## 5.4.7 ## 5.4.7
## Warning
due to a bug in the 0.13.0 release of the zig compiler you will need the development version of zig in order to build the lua54.dll on windows.
## Build Instructions ## Build Instructions
To build all targets run To build all targets run
```sh ```sh

View file

@ -1,10 +1,10 @@
.{ .{
.name = .lua, .name = .lua,
.version = "5.4.7", .version = "5.4.7",
.fingerprint = 0xd671372bcadcaace, .fingerprint = 0xd671372bcadcaace,
.minimum_zig_version = "0.14.0",
.dependencies = .{ .dependencies = .{
.lua = .{ .lua = .{
.url = "https://www.lua.org/ftp/lua-5.4.7.tar.gz", .url = "https://www.lua.org/ftp/lua-5.4.7.tar.gz",