Documentation: docs.rs
Fast (or trying to be!) deserailizer and parser for Minecraft: Java Edition's NBT and Anvil formats.
Includes
struct
s.Serde deserialization is implemented in a way to try and avoid memory allocations. Strings can be deserialized as &str
, as well as deserialising the block states of chunks to &[u8]
.
See the examples
directory for more examples.
toml
[dependencies]
fastnbt = "0.10"
```rust
struct PlayerDat<'a> { data_version: i32,
#[serde(borrow)]
inventory: Vec<InventorySlot<'a>>,
ender_items: Vec<InventorySlot<'a>>,
}
struct InventorySlot<'a> { id: &'a str, // we avoid allocating a string here. } ```