Registry / serialization / fastnbt

fastnbt

JSON →
library2.6.1rscratesunverified

Serde deserializer for Minecraft's NBT format.

# Cargo.toml [dependencies] fastnbt = "2.6.1"
INSTALL
IMPORT
SIG · FASTNBT
F
fastnbt
serializationrustv2.6.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

from_bytes
use fastnbt::from_bytes;

Deserialize NBT data into a Rust struct.

use fastnbt::from_bytes; use serde::Deserialize; #[derive(Deserialize)] struct MyData { name: String, } fn main() { let bytes = b"..."; let data: MyData = from_bytes(bytes).unwrap(); }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
2.6.1latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
2 hits · last 30 days
node
2
Resources
fastnbt — cargo add fastnbt · libregistry