mod: bump zterm dependency; add zlog dependency
All checks were successful
Zig Project Action / Lint, Spell-check and test zig project (push) Successful in 1m22s

`zlog` is used to log messages to the log file that is also used by
`serve` by default, making it a single source for all the log messages.
This commit is contained in:
2025-11-01 00:18:44 +01:00
parent 8602db4d43
commit 8ac6c16289
3 changed files with 17 additions and 2 deletions

View File

@@ -118,10 +118,12 @@ pub fn main() !void {
}
pub const panic = App.panic_handler;
pub const std_options = zlog.std_options;
const log = std.log.scoped(.default);
const std = @import("std");
const assert = std.debug.assert;
const zlog = @import("zlog");
const zterm = @import("zterm");
const App = zterm.App(
Model,