this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

s/els/lsr

rockorager.dev 38395fc4 043cc8d8

verified
+5 -37
+1 -1
build.zig
··· 19 19 exe_mod.addImport("zeit", zeit_mod); 20 20 21 21 const exe = b.addExecutable(.{ 22 - .name = "els", 22 + .name = "lsr", 23 23 .root_module = exe_mod, 24 24 }); 25 25
+3 -35
build.zig.zon
··· 1 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 = .els, 10 - 11 - // This is a [Semantic Version](https://semver.org/). 12 - // In a future version of Zig it will be used for package deduplication. 2 + .name = .lsr, 13 3 .version = "0.0.0", 14 - 15 - // Together with name, this represents a globally unique package 16 - // identifier. This field is generated by the Zig toolchain when the 17 - // package is first created, and then *never changes*. This allows 18 - // unambiguous detection of one package being an updated version of 19 - // another. 20 - // 21 - // When forking a Zig project, this id should be regenerated (delete the 22 - // field and run `zig build`) if the upstream project is still maintained. 23 - // Otherwise, the fork is *hostile*, attempting to take control over the 24 - // original project's identity. Thus it is recommended to leave the comment 25 - // on the following line intact, so that it shows up in code reviews that 26 - // modify the field. 27 - .fingerprint = 0xb119d4f4d6056f13, // Changing this has security and trust implications. 4 + .fingerprint = 0x495d173f6002e86, // Changing this has security and trust implications. 28 5 29 - // Tracks the earliest Zig version that the package considers to be a 30 - // supported use case. 31 6 .minimum_zig_version = "0.14.0", 32 7 33 - // This field is optional. 34 - // Each dependency must either provide a `url` and `hash`, or a `path`. 35 - // `zig build --fetch` can be used to fetch all dependencies of a package, recursively. 36 - // Once all dependencies are fetched, `zig build` no longer requires 37 - // internet connectivity. 38 8 .dependencies = .{ 39 9 .ourio = .{ 40 10 .url = "git+https://github.com/rockorager/ourio#1afffffe2424f9c5923271ac764e950efbdde696", ··· 49 19 "build.zig", 50 20 "build.zig.zon", 51 21 "src", 52 - // For example... 53 - //"LICENSE", 54 - //"README.md", 22 + "LICENSE", 55 23 }, 56 24 }
+1 -1
src/main.zig
··· 7 7 8 8 const usage = 9 9 \\Usage: 10 - \\ els [options] [directory] 10 + \\ lsr [options] [directory] 11 11 \\ 12 12 \\ --help Print this message and exit 13 13 \\