Skip to content

Commit f626cb6

Browse files
committed
update to zig 0.16.0-dev.2682+02142a54d
1 parent 7b03f0b commit f626cb6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Provides the necessary building blocks to develop Language Server Protocol imple
1010
# Installation
1111

1212
> [!NOTE]
13-
> The default branch requires Zig `0.16.0-dev.2510+bcb5218a2` or later. Checkout the `0.15.x` branch when using Zig 0.15
13+
> The default branch requires Zig `0.16.0-dev.2682+02142a54d` or later. Checkout the `0.15.x` branch when using Zig 0.15
1414
1515
```bash
1616
# Initialize a `zig build` project if you haven't already

build.zig.zon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.{
22
.name = .lsp_kit,
33
.version = "0.1.0",
4-
.minimum_zig_version = "0.16.0-dev.2510+bcb5218a2",
4+
.minimum_zig_version = "0.16.0-dev.2682+02142a54d",
55
.dependencies = .{},
66
.paths = .{
77
"build.zig",

src/codegen/codegen.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pub fn main(init: std.process.Init.Minimal) !u8 {
1010
const gpa = debug_allocator.allocator();
1111

1212
var threaded: std.Io.Threaded = .init_single_threaded;
13-
const io = threaded.ioBasic();
13+
const io = threaded.io();
1414

1515
var arg_it = try init.args.iterateAllocator(gpa);
1616
defer arg_it.deinit();

0 commit comments

Comments
 (0)