zig/lib/build-web
hemisputnik 99229ceb55 std.Io.{Writer|Duration}: move duration formatting to a format method
Remove the `{D}` format specifier. It is moved into `std.Io.Duration` as
a format method.

Migration plan:

```diff
-writer.print("{D}", .{ns});
+writer.print("{f}", .{std.Io.Duration{ .nanoseconds = ns }});
```

All instances where `{D}` was used have been changed to use
`std.Io.Duration` and `{f}`.

Fixes #31281
2026-02-28 02:46:04 +01:00
..
fuzz.zig fix fuzzing speed with prior runs 2026-02-13 17:58:09 -05:00
index.html std.Build: implement unit test timeouts 2025-10-18 09:28:39 +01:00
main.js std.Build: implement unit test timeouts 2025-10-18 09:28:39 +01:00
main.zig all: replace all @Type usages 2025-11-22 22:42:38 +00:00
style.css build system: replace fuzzing UI with build UI, add time report 2025-08-01 23:48:21 +01:00
time_report.css build system: replace fuzzing UI with build UI, add time report 2025-08-01 23:48:21 +01:00
time_report.zig std.Io.{Writer|Duration}: move duration formatting to a format method 2026-02-28 02:46:04 +01:00