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/", + }, }