feat: update to Zig v2024.1.0-mach

This commit is contained in:
Rekai Nyangadzayi Musuka 2024-01-17 16:16:28 -06:00
parent 4363360ce4
commit 040e15f72e
2 changed files with 8 additions and 1 deletions

View File

@ -15,7 +15,7 @@ pub fn build(b: *std.Build) void {
// set a preferred release mode, allowing the user to decide how to optimize.
const optimize = b.standardOptimizeOption(.{});
_ = b.addModule("bit-string", .{ .source_file = .{ .path = "src/lib.zig" } });
_ = b.addModule("bit-string", .{ .root_source_file = .{ .path = "src/lib.zig" } });
const lib = b.addStaticLibrary(.{
.name = "bit-string",

View File

@ -1,5 +1,12 @@
.{
.name = "bit-string",
.version = "0.1.0",
.paths = .{
"build.zig",
"build.zig.zon",
"LICENSE",
"README.md",
"src"
},
.dependencies = .{},
}