nbt-rs 0.1.0

A simple rust library for dealing with NBT
Documentation
1
2
3
4
5
6
7
8
#![doc = include_str!("../README.md")]
#![warn(missing_docs)]

// Based on https://minecraft.wiki/w/NBT_format#Binary_format

pub mod parser;
pub mod serializer;
pub mod tags;