Files
pugz/build.zig.zon
Ankit Patial 2b7286db4e fix: handle optional primitive types in @TypeOf annotations
- Treat []const u8 as string primitive, not array (fixes ?[]const u8)
- Optional primitives generate ?T = null (e.g., ?[]const u8 = null)
- Added test for optional string type annotation
2026-02-10 12:35:09 +05:30

14 lines
308 B
Zig

.{
.name = .pugz,
.version = "0.3.15",
.fingerprint = 0x822db0790e17621d, // Changing this has security and trust implications.
.minimum_zig_version = "0.15.2",
.dependencies = .{},
.paths = .{
"build.zig",
"build.zig.zon",
"src",
"examples",
},
}