/ build.zig.zon
build.zig.zon
1 .{ 2 .name = "ZDSM", 3 // This is a [Semantic Version](https://semver.org/). 4 // In a future version of Zig it will be used for package deduplication. 5 .version = "0.1.0", 6 7 // This field is optional. 8 // This is currently advisory only; Zig does not yet do anything 9 // with this value. 10 //.minimum_zig_version = "0.11.0", 11 12 // This field is optional. 13 // Each dependency must either provide a `url` and `hash`, or a `path`. 14 // `zig build --fetch` can be used to fetch all dependencies of a package, recursively. 15 // Once all dependencies are fetched, `zig build` no longer requires 16 // internet connectivity. 17 .dependencies = .{ 18 .zap = .{ 19 .url = "https://github.com/edyu/zap/archive/refs/tags/v0.5.0.tar.gz", 20 .hash = "12203e381b737b077759d3c63a1752fe79bb35dd50d1122a329a3f7b4504156d5595", 21 }, 22 }, 23 .paths = .{ 24 // This makes *all* files, recursively, included in this package. It is generally 25 // better to explicitly list the files and directories instead, to insure that 26 // fetching from tarballs, file system paths, and version control all result 27 // in the same contents hash. 28 "", 29 // For example... 30 //"build.zig", 31 //"build.zig.zon", 32 //"src", 33 //"LICENSE", 34 //"README.md", 35 }, 36 }