authorgravatar for fergusbkr@gmail.comfjebaker <fergusbkr@gmail.com> 2023-10-18 23:05:38 +01:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2023-10-18 15:59:30 -07:00
loge79b6d25a140d0a97a6ba0f88f504dd52ff42d29
treedb7eaf145fd38ba720aa6123e4797a4d237505ee
parentfc9553f55eee4bdf08a6cddb908eebc2860547b0

fix: update module syntax for zig 0.11.0


1 files changed, 4 insertions(+), 4 deletions(-)

build.zig+4-4
...@@ -1,8 +1,8 @@...@@ -1,8 +1,8 @@
1const std = @import("std");1const std = @import("std");
22
3pub fn build(b: *std.build.Builder) void {3pub fn build(b: *std.build.Builder) void {
4 b.addModule(.{4 _ = b.addModule(
5 .name = "extras",5 "extras",
6 .source_file = .{ .path = "src/lib.zig" },6 .{ .source_file = .{ .path = "src/lib.zig" } },
7 });7 );
8}8}