The The Named Binary Tag, is a structured binary format used by the game Minecraft for a variety of purposes such as, Player Data and World Saves as well as being used within the Minecraft Protocol.
This crate is yet another implementation of the NBT format.
- Support for Serialisation and Deserialization with the Serde framework.
- Ability to create partial or complete documents through the
Tag
andBlob
objects. - Ability to read/write from a socket or buffer.
serde
(default) includes Serde serialisation and deserialization support.serde_boolean
(default) converts booleans to bytes during serialisation and deserialization.serde_unsigned
converts unsigned to their signed counterparts during serialisation and deserialization.debug
(default) debug trait impl for tags and blobsarrays
utils for writing byte, int and long arrays. (dev branch)compression
gzip and DEFLATE support. (dev branch)
Place one of the following in your Cargo.Toml
file:
# Stable(ish)
luna_nbt = "0.0.4"
# Master/Dev
git = "https://github.com/samhdev/luna_nbt"