.{ // This is the default name used by packages depending on this one. For // example, when a user runs `zig fetch --save `, this field is used // as the key in the `dependencies` table. Although the user can choose a // different name, most users will stick with this provided value. // // It is redundant to include "zig" in this name because it is already // within the Zig package namespace. .name = "teamdraft", // This is a [Semantic Version](https://semver.org/). // In a future version of Zig it will be used for package deduplication. .version = "0.1.0", // This field is optional. // This is currently advisory only; Zig does not yet do anything // with this value. //.minimum_zig_version = "0.11.0", // This field is optional. // Each dependency must either provide a `url` and `hash`, or a `path`. // `zig build --fetch` can be used to fetch all dependencies of a package, recursively. // Once all dependencies are fetched, `zig build` no longer requires // internet connectivity. .dependencies = .{ .httpz = .{ .url = "https://github.com/karlseguin/http.zig/archive/406fb00f8c43fe9b2da0f32f428675755c67d054.tar.gz", .hash = "12209e87663712928c6ae1c690e65df15a796e970e5d18f5e4e05f0eb10404883d23", }, .mustache = .{ .url = "https://github.com/batiati/mustache-zig/archive/ae5ecc1522da983dc39bb0d8b27f5d1b1d7956e3.tar.gz", .hash = "1220ac9e3316ce71ad9cd66c7f215462bf5c187828b50bb3d386549bf6af004e3bb0", }, .pg = .{ .url = "https://github.com/karlseguin/pg.zig/archive/495fb12eef648af0d5b213514714afab71652409.tar.gz", .hash = "122080d94692ad28203c2d1f6301d074adef183a0f983af89ee8084aeead797f288c", }, .zul = .{ .url = "https://github.com/karlseguin/zul/archive/2193133fc792ed5b040eff08aeb48a193eb57893.tar.gz", .hash = "1220e4d73251b8266b8e8ec1bee1ce95edf409ca67b96707b8a7ec58d856b7c8a82a", }, .logz = .{ .url = "https://github.com/karlseguin/log.zig/archive/0f42ca099fd69f9cbd09620a7f455db0fa0310cc.tar.gz", .hash = "1220996bf8517c7785a577811f6ee39574c274151a350e2be1896359e878e1ef9aa9", }, }, .paths = .{ "build.zig", "build.zig.zon", "src", // For example... //"LICENSE", //"README.md", }, }