mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
20 lines
385 B
Zig
20 lines
385 B
Zig
.{
|
|
// Comment
|
|
.name = "temp",
|
|
.version = "0.0.0",
|
|
.dependencies = .{
|
|
.example_0 = .{
|
|
.url = "https://example.com/foo.tar.gz",
|
|
.hash = "...",
|
|
},
|
|
.example_1 = .{
|
|
.path = "../foo",
|
|
.lazy = false,
|
|
},
|
|
},
|
|
.paths = .{
|
|
"build.zig",
|
|
"build.zig.zon",
|
|
"src",
|
|
},
|
|
}
|