mcnbt 2.0.0

Read and write NBT
Documentation
1
2
3
4
5
6
7
8
9
10
#![doc = include_str!("../README.md")]

pub mod byte_order;
pub mod errors;
#[cfg(feature = "read")]
pub(crate) mod parser;
pub mod tag;

pub use byte_order::ByteOrder;
pub use tag::Tag;