Nbt

Nbt

NBT (Named Binary Tag) library for Zig 0.16.0.

Installation

Add the dependency with zig fetch:

zig fetch --save git+https://github.com/VantStudios/Nbt.git

Then in your build.zig:

const nbt_dep = b.dependency("nbt", .{
    .target = target,
    .optimize = optimize,
});

exe.root_module.addImport("nbt", nbt_dep.module("nbt"));

Usage

const nbt = @import("nbt");

License

MIT