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 nbt!
macro allows easy
creation of these values.
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 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.
fastnbt's Value
type can round-trip deserialize-serialize NBT arrays. The
other crates have value types as well, they may also rount-trip correctly.
Honestly, they all seem like good options!