···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 = .els,
1010-1111- // This is a [Semantic Version](https://semver.org/).
1212- // In a future version of Zig it will be used for package deduplication.
22+ .name = .lsr,
133 .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 = 0xb119d4f4d6056f13, // Changing this has security and trust implications.
44+ .fingerprint = 0x495d173f6002e86, // Changing this has security and trust implications.
2852929- // Tracks the earliest Zig version that the package considers to be a
3030- // supported use case.
316 .minimum_zig_version = "0.14.0",
3273333- // 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.
388 .dependencies = .{
399 .ourio = .{
4010 .url = "git+https://github.com/rockorager/ourio#1afffffe2424f9c5923271ac764e950efbdde696",
···4919 "build.zig",
5020 "build.zig.zon",
5121 "src",
5252- // For example...
5353- //"LICENSE",
5454- //"README.md",
2222+ "LICENSE",
5523 },
5624}
+1-1
src/main.zig
···7788const usage =
99 \\Usage:
1010- \\ els [options] [directory]
1010+ \\ lsr [options] [directory]
1111 \\
1212 \\ --help Print this message and exit
1313 \\