add build.zig.zon
All checks were successful
Build / build (push) Successful in 1m22s
Build / sign (push) Successful in 55s
Build / deploy (push) Successful in 1m25s

This commit is contained in:
Emil Lerch 2024-05-05 13:20:56 -07:00
parent 5cf0be6f23
commit 6dcc416167
Signed by: lobo
GPG Key ID: A7B62D657EF764F8

23
build.zig.zon Normal file
View File

@ -0,0 +1,23 @@
.{
.name = "flexilib",
.version = "0.5.0",
// This field is optional.
// This is currently advisory only; Zig does not yet do anything
// with this value.
.minimum_zig_version = "0.12.0",
// Specifies the set of files and directories that are included in this package.
// Only files and directories listed here are included in the `hash` that
// is computed for this package.
// Paths are relative to the build root. Use the empty string (`""`) to refer to
// the build root itself.
// A directory listed here means that all files within, recursively, are included.
.paths = .{
"build.zig",
"build.zig.zon",
"src",
"LICENSE",
"README.md",
},
}