aboutsummaryrefslogtreecommitdiff
path: root/build.zig.zon
blob: 4f4b9482178f3e283149d0a7e651a8d98a4893c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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,
}