Installation
Add zig-xml to your build.zig.zon:
zig fetch --save git+https://github.com/zig-utils/zig-xml
Then wire the module up in build.zig:
const xml = b.dependency("xml", .{
.target = target,
.optimize = optimize,
});
exe.root_module.addImport("xml", xml.module("xml"));
Requires Zig 0.17.0-dev.1441+d5181a9c9 or newer.
Or through Pantry:
pantry add zig-xml