From 606ed16db5e7b5faed634f6fee2c5943b19177ea Mon Sep 17 00:00:00 2001 From: Emmz Rendle Date: Thu, 21 May 2026 10:58:30 +0100 Subject: [PATCH] Include ggml/ in package .paths The local `.ggml = .{ .path = "ggml" }` dep declared in dependencies needs the `ggml/` directory to survive the package's .paths filter, otherwise consumers fail with `ggml_dep.artifact("ggml")` panicking because the directory is missing from the fetched package. Inherited from diogok upstream; same fix applies there. Co-Authored-By: Claude Opus 4.7 --- build.zig.zon | 1 + 1 file changed, 1 insertion(+) diff --git a/build.zig.zon b/build.zig.zon index 9bef8ad..e539fc9 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -16,6 +16,7 @@ "build.zig", "build.zig.zon", "src", + "ggml", "LICENSE", "README.md", },