From f778c557c541440960b68c62026d348809393bf2 Mon Sep 17 00:00:00 2001 From: nat3 Date: Sat, 5 Sep 2026 00:06:01 +0200 Subject: [PATCH] lean-deps: squash raygui-dev fork history into single commit --- build.zig.zon | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 build.zig.zon diff --git a/build.zig.zon b/build.zig.zon new file mode 100644 index 00000000..a6abf20e --- /dev/null +++ b/build.zig.zon @@ -0,0 +1,19 @@ +.{ + .name = .raygui, + .version = "4.0.0", + .minimum_zig_version = "0.16.0", + + .fingerprint = 0x6ef335682ef70c01, + + .dependencies = .{}, + + // Only src/ (raygui.h) is consumed by downstream builds (raylib's + // C backend includes it directly; raylib_zig vendors its own copy). + // Everything else (examples/styles/docs/icons/images/logo/projects) + // stays in the repo but is excluded from what `zig fetch` materializes + // and hashes, keeping the local package cache lean. + .paths = .{ + "src", + "LICENSE", + }, +}