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 @@...@@ -1,4 +1,3 @@
1zig-cache
2.zig-cache1.zig-cache
3zig-out2zig-out
4.zigmod3.zigmod
build.zig+1-1
...@@ -7,7 +7,7 @@ pub fn build(b: *std.Build) void {...@@ -7,7 +7,7 @@ pub fn build(b: *std.Build) void {
77
8 const exe = b.addExecutable(.{8 const exe = b.addExecutable(.{
9 .name = "zig-color",9 .name = "zig-color",
10 .root_source_file = .{ .path = "main.zig" },10 .root_source_file = b.path("main.zig"),
11 .target = target,11 .target = target,
12 .optimize = mode,12 .optimize = mode,
13 });13 });