Skip to content
This repository was archived by the owner on Jun 20, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ pub fn build(b: *std.Build) void {
.optimize = optimize,
});
bench.root_module.addImport("json", json_module);
bench.linkLibC();

const bench_step = b.step("bench", "Run benchmarks");
const run_bench = b.addRunArtifact(bench);
Expand Down
4 changes: 2 additions & 2 deletions build.zig.zon
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
},
.dependencies = .{
.json = .{
.url = "https://github.com/getty-zig/json/archive/748b03511c33ab4599f287d63ce7437b3d0483b6.tar.gz",
.hash = "1220cbadfec4566fe157d4301430a589a2d5b394e4b008535830af1f3605271b356c",
.url = "https://github.com/getty-zig/json/archive/6935f474db886b4a990652a9905b11cf49b1e110.tar.gz",
.hash = "1220a6a7706fa609ce63e2bf61812515f6ab45273397ca591f925a32e7e507cb7cec",
},
},
}