All checks were successful
Zig Project Action / Lint, Spell-check and test zig project (push) Successful in 1m7s
This is a starting point to dynamically loading `markdown` files as blog entries. With this change the *doc/about.md* and *doc/blog.md* files are no longer builded into the executable and instead read from the filesystem during runtime (along with the new test file *doc/test.md*).
25 lines
863 B
Zig
25 lines
863 B
Zig
.{
|
|
.name = .tui_website,
|
|
// This is a [Semantic Version](https://semver.org/).
|
|
.version = "0.0.2",
|
|
.fingerprint = 0x93d98a4d9d000e9c, // Changing this has security and trust implications.
|
|
.minimum_zig_version = "0.16.0-dev.463+f624191f9",
|
|
.dependencies = .{
|
|
.zterm = .{
|
|
.url = "git+https://gitea.yves-biener.de/yves-biener/zterm#b3dc8096d76d6e246d48f9034a65997c0047c3c6",
|
|
.hash = "zterm-0.3.0-1xmmENP4GwBw65udohsoaxc9Kp4Yo7kORt4okY5pLslr",
|
|
},
|
|
.zlog = .{
|
|
.url = "git+https://gitea.yves-biener.de/yves-biener/zlog#411a6dc358a3ef463ab704e2f6b887a019a5decf",
|
|
.hash = "zlog-0.15.0-6JSlR9tGAAD1_RAwOEDWrSVFRl4t4WFsJxRXqrW1PHfK",
|
|
},
|
|
},
|
|
.paths = .{
|
|
"build.zig",
|
|
"build.zig.zon",
|
|
"src",
|
|
"LICENSE",
|
|
"README.md",
|
|
},
|
|
}
|