orama/vault/build.zig.zon
anonpenguin23 08cf418561 fix(vault): pin zig toolchain to 0.15.2 (the version that actually builds)
The stale 0.14.0 pin does not compile vault-guardian: 0.14.0 fails with
'expected 32 array elements' on src/main.zig and 0.16.0 fails with
'GeneralPurposeAllocator' removed. 0.15.2 cross-compiles cleanly to
x86_64-linux-musl (verified). This unblocks a full-stack 'orama node rollout'
from a fresh checkout (AnChat #1230/#1233).
2026-06-22 09:47:05 +03:00

13 lines
232 B
Zig

.{
.name = .orama_vault,
.version = "0.1.0",
.fingerprint = 0xb3eae57574026b46,
.minimum_zig_version = "0.15.2",
.paths = .{
"build.zig",
"build.zig.zon",
"src",
"tests",
},
}