From 9f11523ebc6412bf2521427540ddc10a3db42408 Mon Sep 17 00:00:00 2001 From: AramJonghu Date: Sat, 6 Jun 2026 22:33:27 +0200 Subject: [PATCH] update to 0.17 --- build.zig | 4 +--- build.zig.zon | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/build.zig b/build.zig index bcf6016..7623583 100644 --- a/build.zig +++ b/build.zig @@ -37,9 +37,7 @@ pub fn build(b: *std.Build) void { run_cmd.step.dependOn(b.getInstallStep()); - if (b.args) |args| { - run_cmd.addArgs(args); - } + run_cmd.addPassthruArgs(); const mod_tests = b.addTest(.{ .root_module = mod, diff --git a/build.zig.zon b/build.zig.zon index c00bfec..83b9515 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -25,7 +25,7 @@ .fingerprint = 0x17dbce05708c2aa7, // Changing this has security and trust implications. // Tracks the earliest Zig version that the package considers to be a // supported use case. - .minimum_zig_version = "0.16.0", + .minimum_zig_version = "0.17.0", // This field is optional. // Each dependency must either provide a `url` and `hash`, or a `path`. // `zig build --fetch` can be used to fetch all dependencies of a package, recursively.