zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

build.zig.zon (428B) - Raw


      1 // The Zig compiler is not intended to be consumed as a package.
      2 // The sole purpose of this manifest file is to test the compiler.
      3 .{
      4     .name = .zig,
      5     .version = "0.0.0",
      6     .dependencies = .{
      7         .standalone_test_cases = .{
      8             .path = "test/standalone",
      9         },
     10         .link_test_cases = .{
     11             .path = "test/link",
     12         },
     13     },
     14     .paths = .{""},
     15     .fingerprint = 0xc1ce108124179e16,
     16 }