mirror of
https://github.com/ziglang/zig.git
synced 2024-11-30 00:52:52 +00:00
13 lines
316 B
Plaintext
13 lines
316 B
Plaintext
|
// 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",
|
||
|
},
|
||
|
},
|
||
|
.paths = .{""},
|
||
|
}
|