mod: bump zig to master version; bump zterm dependency
All checks were successful
Zig Project Action / Lint, Spell-check and test zig project (push) Successful in 1m0s
Release Zig Application / Release zig project (release) Successful in 1m27s

Use progress example for initial tui-website test application.
This commit is contained in:
2025-10-28 19:57:10 +01:00
parent dd6b381bbc
commit 5227a33d0a
7 changed files with 204 additions and 194 deletions

View File

@@ -6,30 +6,35 @@
//
// It is redundant to include "zig" in this name because it is already
// within the Zig package namespace.
.name = "tui-website",
.name = .tui_website,
// This is a [Semantic Version](https://semver.org/).
// In a future version of Zig it will be used for package deduplication.
.version = "0.0.0",
// This field is optional.
// This is currently advisory only; Zig does not yet do anything
// with this value.
//.minimum_zig_version = "0.11.0",
// Together with name, this represents a globally unique package
// identifier. This field is generated by the Zig toolchain when the
// package is first created, and then *never changes*. This allows
// unambiguous detection of one package being an updated version of
// another.
//
// When forking a Zig project, this id should be regenerated (delete the
// field and run `zig build`) if the upstream project is still maintained.
// Otherwise, the fork is *hostile*, attempting to take control over the
// original project's identity. Thus it is recommended to leave the comment
// on the following line intact, so that it shows up in code reviews that
// modify the field.
.fingerprint = 0x93d98a4d9d000e9c, // Changing this has security and trust implications.
// Tracks the earliest Zig version that the package considers to be a
// supported use case.
.minimum_zig_version = "0.16.0-dev.463+f624191f9",
// This field is optional.
// Each dependency must either provide a `url` and `hash`, or a `path`.
// `zig build --fetch` can be used to fetch all dependencies of a package, recursively.
// Once all dependencies are fetched, `zig build` no longer requires
// internet connectivity.
.dependencies = .{
.zlog = .{
.url = "git+https://gitea.yves-biener.de/yves-biener/zlog#06752299be5eabf191d65d1fda29bc439fea2b1e",
.hash = "1220fd395b4770eb6bdc6468aece6bd80af53752ae10b52419cba44cf84f2427a49b",
},
.zterm = .{
.url = "git+https://gitea.yves-biener.de/yves-biener/zterm#6cd78d04182977013f6864963473e28cd21ae5f9",
.hash = "1220136f9f07b702c473a102036cd059e85e2d29c9f94c5f103a8fa3355084b86cd7",
.url = "git+https://gitea.yves-biener.de/yves-biener/zterm#89aeac1e968f1390bd945f734aac8612efbab179",
.hash = "zterm-0.3.0-1xmmELjzGwBxVlqXRHn7p-sXFU9xPxqFMxF0PY2CkzFn",
},
},
.paths = .{