fastnbt crate

Documentation: docs.rs

Fast serde deserializer and serializer for Minecraft: Java Edition's NBT format.

Zero-copy is supported where possible through from_bytes. The borrow module contains more types for avoiding allocations.

Includes a Value type for serializing or deserializing any NBT. Value correctly preserves the exact NBT structure. The nbt! macro allows easy creation of these values.

To support NBT's arrays, there are dedicated ByteArray, IntArray and LongArray types.

See the documentation for more information.

toml [dependencies] fastnbt = "2"

fastnbt follows Semver, some things that this project does not count as a breaking change are:

Changes that make fastnbt incompatible with WebAssembly are considered breaking changes.

Other NBT crates

There appears to be a few crates that support serde (de)serialization, the main ones I found were:

There are likely others! There are definitely more without serde support.