mod: adapt implementation to zig version 0.15.2
Some checks failed
Zig Project Action / Lint, Spell-check and test zig project (push) Failing after 54s

This commit is contained in:
2026-01-17 12:05:20 +01:00
parent e1e8907848
commit 4874252e8c
19 changed files with 339 additions and 392 deletions

View File

@@ -65,10 +65,7 @@ pub fn main() !void {
}
const allocator = gpa.allocator();
var threaded_io: std.Io.Threaded = .init(allocator, .{});
defer threaded_io.deinit();
var app: App = .init(threaded_io.ioBasic(), .{});
var app: App = .init(.{}, .{});
var renderer = zterm.Renderer.Buffered.init(allocator);
defer renderer.deinit();