zig/build.zig.zon
2025-02-26 11:42:04 -08:00

17 lines
428 B
Zig

// The Zig compiler is not intended to be consumed as a package.
// The sole purpose of this manifest file is to test the compiler.
.{
.name = .zig,
.version = "0.0.0",
.dependencies = .{
.standalone_test_cases = .{
.path = "test/standalone",
},
.link_test_cases = .{
.path = "test/link",
},
},
.paths = .{""},
.fingerprint = 0xc1ce108124179e16,
}