authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2024-12-28 19:32:34 -08:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2024-12-28 19:32:34 -08:00
logb9313635237c1f05ed4e40b8b1dba5a51f76ef0f
treefb7882eb9aa698699f3131be0d391aa04b439d2b
parentfc908cce2f18abe9f587f53005b1a5992d88c211

update to zig 0.13


2 files changed, 1 insertions(+), 2 deletions(-)

.gitignore-1
......@@ -1,4 +1,3 @@
1zig-cache
21.zig-cache
32zig-out
43.zigmod
build.zig+1-1
......@@ -7,7 +7,7 @@ pub fn build(b: *std.Build) void {
77
88 const exe = b.addExecutable(.{
99 .name = "zig-color",
10 .root_source_file = .{ .path = "main.zig" },
10 .root_source_file = b.path("main.zig"),
1111 .target = target,
1212 .optimize = mode,
1313 });