From 41f4ee721b138304294b185185dc6fc51549c5b9 Mon Sep 17 00:00:00 2001 From: Robby Zambito Date: Sat, 29 Nov 2025 21:20:56 -0500 Subject: Switch from clap to yazap This is compatible with the latest 0.16.0 nightly build. It is also a bit less magic than clap. --- build.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'build.zig') diff --git a/build.zig b/build.zig index 4c1fabd..4a90d7b 100644 --- a/build.zig +++ b/build.zig @@ -83,8 +83,8 @@ pub fn build(b: *std.Build) void { }), }); - const clap = b.dependency("clap", .{}); - exe.root_module.addImport("clap", clap.module("clap")); + const yazap = b.dependency("yazap", .{}); + exe.root_module.addImport("yazap", yazap.module("yazap")); // This declares intent for the executable to be installed into the // install prefix when running `zig build` (i.e. when executing the default -- cgit