···11+.{
22+ // This is the default name used by packages depending on this one. For
33+ // example, when a user runs `zig fetch --save <url>`, this field is used
44+ // as the key in the `dependencies` table. Although the user can choose a
55+ // different name, most users will stick with this provided value.
66+ //
77+ // It is redundant to include "zig" in this name because it is already
88+ // within the Zig package namespace.
99+ .name = .lsr,
1010+1111+ // This is a [Semantic Version](https://semver.org/).
1212+ // In a future version of Zig it will be used for package deduplication.
1313+ .version = "0.0.0",
1414+1515+ // Together with name, this represents a globally unique package
1616+ // identifier. This field is generated by the Zig toolchain when the
1717+ // package is first created, and then *never changes*. This allows
1818+ // unambiguous detection of one package being an updated version of
1919+ // another.
2020+ //
2121+ // When forking a Zig project, this id should be regenerated (delete the
2222+ // field and run `zig build`) if the upstream project is still maintained.
2323+ // Otherwise, the fork is *hostile*, attempting to take control over the
2424+ // original project's identity. Thus it is recommended to leave the comment
2525+ // on the following line intact, so that it shows up in code reviews that
2626+ // modify the field.
2727+ .fingerprint = 0x495d173af9afcd7, // Changing this has security and trust implications.
2828+2929+ // Tracks the earliest Zig version that the package considers to be a
3030+ // supported use case.
3131+ .minimum_zig_version = "0.14.0",
3232+3333+ // This field is optional.
3434+ // Each dependency must either provide a `url` and `hash`, or a `path`.
3535+ // `zig build --fetch` can be used to fetch all dependencies of a package, recursively.
3636+ // Once all dependencies are fetched, `zig build` no longer requires
3737+ // internet connectivity.
3838+ .dependencies = .{
3939+ .ourio = .{
4040+ .url = "git+https://github.com/rockorager/ourio#6ed0e45a772f6a7241db1663085db3f813bf3932",
4141+ .hash = "ourio-0.0.0-_s-z0agIAgD_Ih6DEjzDGxy5EP9K1i_xye_VacvLzgY5",
4242+ },
4343+ .zeit = .{
4444+ .url = "git+https://github.com/rockorager/zeit#4496d1c40b2223c22a1341e175fc2ecd94cc0de9",
4545+ .hash = "zeit-0.6.0-5I6bk1J1AgA13rteb6E0steXiOUKBYTzJZMMIuK9oEmb",
4646+ },
4747+ },
4848+ .paths = .{
4949+ "build.zig",
5050+ "build.zig.zon",
5151+ "src",
5252+ // For example...
5353+ //"LICENSE",
5454+ //"README.md",
5555+ },
5656+}