From c49282dc544ef846b367ecd515e2d48ed52c7ec9 Mon Sep 17 00:00:00 2001 From: RoadRoller01 Date: Thu, 17 Jul 2025 21:17:47 +0300 Subject: [PATCH] Update to zig 0.14.0 --- .gitignore | 1 + build.zig.zon | 10 ++++++++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index d62eca0468..1b99f892e7 100644 --- a/.gitignore +++ b/.gitignore @@ -88,6 +88,7 @@ rust_build [Oo]bj/ packages/ cmocka/ +.zig-cache/ zig-cache/ zig-out/ .cache diff --git a/build.zig.zon b/build.zig.zon index de7392c748..a6f5c34243 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -1,5 +1,11 @@ .{ - .name = "unicorn", + .name = .unicorn, .version = "2.1.3", - .paths = .{""}, + .fingerprint = 0x58fbd83f9276a14b, // Changing this has security and trust implications. + .minimum_zig_version = "0.14.0", + .paths = .{ + "build.zig", + "build.zig.zon", + "bindings/", + }, }