Update for Zig 0.13.0-dev.351+64ef45eb0.
2 files changed, 4 insertions(+), 3 deletions(-)

M .hgignore
M build.zig
M .hgignore +2 -1
@@ 1,4 1,5 @@ 
 syntax: glob
-zig-cache
+.zig-cache
 *.a
 *.o
+TAGS

          
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,
     });