jetzig/demo/build.zig.zon
2024-10-28 09:10:59 +00:00

28 lines
889 B
Zig

.{
.name = "jetzig-demo",
.version = "0.0.0",
.minimum_zig_version = "0.12.0",
.dependencies = .{
.jetzig = .{
.path = "../",
},
.pg = .{
.url = "https://github.com/karlseguin/pg.zig/archive/d3ff7ab558b6ec1cc9b0de1606dbea364cf2d3b7.tar.gz",
.hash = "1220829e07672808e21d2b07544ed3567299b03d4fb694cd6dd0ece6c433b3a1309f",
},
},
.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",
},
}