Intial project structure with zterm dependency and basic tui render/event loop
Some checks failed
Zig Project Action / Lint, Spell-check and test zig project (push) Failing after 1m41s

This commit is contained in:
2025-11-26 17:55:29 +01:00
parent ae64674873
commit 5dba0d4408
8 changed files with 230 additions and 0 deletions

18
build.zig.zon Normal file
View File

@@ -0,0 +1,18 @@
.{
.name = .tui_diff,
.version = "0.0.1",
.dependencies = .{
.zterm = .{
.url = "git+https://gitea.yves-biener.de/yves-biener/zterm#9488d0b64da0f202943f92ac75808db0c352ec90",
.hash = "zterm-0.3.0-1xmmEKIcHACcXhEe66UhQk9TA2uf79ZnmpcPxAh6AY8s",
},
},
.minimum_zig_version = "0.16.0-dev.1254+bf15c791f",
.paths = .{
"build.zig",
"build.zig.zon",
"src",
"LICENSE",
},
.fingerprint = 0x2e421b067578b8d,
}