mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-26 13:01:34 +03:00
ea516f0e81
and to make the base64 round even, bump sha256 to 200 bits (up from 192)
17 lines
422 B
Zig
17 lines
422 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 = .{""},
|
|
.nonce = 0xc1ce108124179e16,
|
|
}
|