Update for Zig 0.13.0-dev.351+64ef45eb0.
M .hgignore +2 -1
M build.zig +2 -2
@@ 6,14 6,14 @@ pub fn build(b: *Build) void { const mode = b.standardOptimizeOption(.{}); const lib = b.addStaticLibrary(.{ .name = "sodium", - .root_source_file = .{ .path = "src/sodium.zig" }, + .root_source_file = b.path("src/sodium.zig"), .target = target, .optimize = mode, }); b.installArtifact(lib); var tests = b.addTest(.{ - .root_source_file = .{ .path = "src/sodium.zig" }, + .root_source_file = b.path("src/sodium.zig"), .target = target, .optimize = mode, });