/ build.zig.zon
build.zig.zon
 1  .{
 2      // This is the default name used by packages depending on this one. For
 3      // example, when a user runs `zig fetch --save <url>`, this field is used
 4      // as the key in the `dependencies` table. Although the user can choose a
 5      // different name, most users will stick with this provided value.
 6      //
 7      // It is redundant to include "zig" in this name because it is already
 8      // within the Zig package namespace.
 9      .name = .liboprf,
10  
11      // This is a [Semantic Version](https://semver.org/).
12      // In a future version of Zig it will be used for package deduplication.
13      .version = "0.9.1",
14  
15      .minimum_zig_version = "0.14.1",
16  
17      .fingerprint = 0x931fd34c8830d0d8,
18  
19      // This field is optional.
20      // This is currently advisory only; Zig does not yet do anything
21      // with this value.
22      //.minimum_zig_version = "0.11.0",
23  
24      // This field is optional.
25      // Each dependency must either provide a `url` and `hash`, or a `path`.
26      // `zig build --fetch` can be used to fetch all dependencies of a package, recursively.
27      // Once all dependencies are fetched, `zig build` no longer requires
28      // internet connectivity.
29      .dependencies = .{
30          .libsodium = .{
31              .url = "git+https://github.com/jedisct1/libsodium.git#09e995c0c85a0026510704b8ce7f5867a09a3841",
32              .hash = "N-V-__8AAONJYQCM2EvfTRcbTy_p9_e6hTjX34KAk0MItmwe",
33          },
34      },
35      .paths = .{
36          "build.zig",
37          "build.zig.zon",
38          "src",
39          // For example...
40          //"LICENSE",
41          //"README.md",
42      },
43  }