zig-faker

Installation

Add zig-faker to your build.zig.zon:

zig fetch --save git+https://github.com/zig-utils/zig-faker

Then wire the module up in build.zig:

const zig_faker = b.dependency("zig_faker", .{
    .target = target,
    .optimize = optimize,
});
exe.root_module.addImport("zig_faker", zig_faker.module("zig_faker"));

Requires Zig 0.15.0 or newer.

Or through Pantry:

pantry add zig-faker