Documentation: docs.rs
Fast deserializer and serializer for Minecraft: Java Edition's NBT format.
Includes a Value
type for serializing or deserializing any NBT. Value
correctly preserves the exact NBT structure.
The derserializer allows you to avoid allocations where possible. Strings can be
deserialized to &'a str
where 'a
is the lifetime of the data being
deserialized. The borrow
module contains more types for avoiding allocations.
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:
serde::Serialise
to enable spitting out to other
data formats, but may change structure in future.Changes that make fastnbt
incompatible with WebAssembly are considered
breaking changes.
There are other crates for NBT out there, this tries to give an honest comparison to them.
The Hematite nbt
crate was the only other crate I found with serde
deserialization.
Value
type can round-trip deserialize-serialize NBT arrays.