From 6dcc4161676f4769339c86781fa15d7efd2e3619 Mon Sep 17 00:00:00 2001 From: Emil Lerch Date: Sun, 5 May 2024 13:20:56 -0700 Subject: [PATCH] add build.zig.zon --- build.zig.zon | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 build.zig.zon diff --git a/build.zig.zon b/build.zig.zon new file mode 100644 index 0000000..b99a3fc --- /dev/null +++ b/build.zig.zon @@ -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", + }, +}