Todo TUI powered by plaintext with full mouse support
at main 47 lines 1.9 kB view raw
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 = "todui", 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.0.0", 14 15 // This field is optional. 16 // This is currently advisory only; Zig does not yet do anything 17 // with this value. 18 //.minimum_zig_version = "0.11.0", 19 20 // This field is optional. 21 // Each dependency must either provide a `url` and `hash`, or a `path`. 22 // `zig build --fetch` can be used to fetch all dependencies of a package, recursively. 23 // Once all dependencies are fetched, `zig build` no longer requires 24 // internet connectivity. 25 .dependencies = .{ 26 .vaxis = .{ 27 .url = "https://github.com/rockorager/libvaxis/archive/refs/tags/v0.5.1.tar.gz", 28 .hash = "1220de23a3240e503397ea579de4fd85db422f537e10036ef74717c50164475813ce", 29 }, 30 .@"known-folders" = .{ 31 .url = "git+https://github.com/ziglibs/known-folders.git#1cceeb70e77dec941a4178160ff6c8d05a74de6f", 32 .hash = "12205f5e7505c96573f6fc5144592ec38942fb0a326d692f9cddc0c7dd38f9028f29", 33 }, 34 .zeit = .{ 35 .url = "https://github.com/rockorager/zeit/archive/refs/tags/v0.4.3.tar.gz", 36 .hash = "1220b2fb6ce8df3e8fe244220199a932e1982d717f04f1127526201fa9be3c421ab2", 37 }, 38 }, 39 .paths = .{ 40 "build.zig", 41 "build.zig.zon", 42 "src", 43 // For example... 44 //"LICENSE", 45 //"README.md", 46 }, 47}