mirror of
https://github.com/jetzig-framework/jetzig.git
synced 2025-05-14 14:06:08 +00:00
28 lines
901 B
Zig
28 lines
901 B
Zig
.{
|
|
.name = "jetzig-demo",
|
|
.version = "0.0.0",
|
|
.minimum_zig_version = "0.12.0",
|
|
.dependencies = .{
|
|
.jetzig = .{
|
|
.path = "../",
|
|
},
|
|
.iguanas = .{
|
|
.url = "https://github.com/jetzig-framework/iguanas/archive/045f34b3455fb5bbec8cbf81fdc5d19ee54bd625.tar.gz",
|
|
.hash = "12207f8cca149669f7c4bdc02103f6194189a312bbaae97b54e6dc3fb8483d6107bf",
|
|
},
|
|
},
|
|
.paths = .{
|
|
// This makes *all* files, recursively, included in this package. It is generally
|
|
// better to explicitly list the files and directories instead, to insure that
|
|
// fetching from tarballs, file system paths, and version control all result
|
|
// in the same contents hash.
|
|
"",
|
|
// For example...
|
|
//"build.zig",
|
|
//"build.zig.zon",
|
|
//"src",
|
|
//"LICENSE",
|
|
//"README.md",
|
|
},
|
|
}
|