Skip to content

Commit

Permalink
Merge branch 'Cloudef:master' into fix-windows-invalid-handle
Browse files Browse the repository at this point in the history
  • Loading branch information
Sythivo authored Dec 30, 2024
2 parents 954a275 + 154ae98 commit 6219b07
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ zig-aio provides io_uring like asynchronous API and coroutine powered IO tasks f

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

Project is tested on zig version 0.14.0-dev.2183+ee9f00d67
Project is tested on zig version 0.14.0-dev.2571+01081cc8e

## Support matrix

Expand Down
6 changes: 3 additions & 3 deletions build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,9 @@ pub fn build(b: *std.Build) void {
.sanitize_thread = sanitize,
});
switch (mod) {
.minilib => addImportsFrom(&tst.root_module, minilib),
.aio => addImportsFrom(&tst.root_module, aio),
.coro => addImportsFrom(&tst.root_module, coro),
.minilib => addImportsFrom(tst.root_module, minilib),
.aio => addImportsFrom(tst.root_module, aio),
.coro => addImportsFrom(tst.root_module, coro),
else => unreachable,
}
var cmd = makeRunStep(b, target, tst, 3.355e+7, "test-" ++ @tagName(mod), "Run " ++ @tagName(mod) ++ " tests");
Expand Down
6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 6219b07

Please sign in to comment.