mineome 0.2.0

Mineome is a Rust library focusing on providing high quality type definitions for the data-driven aspects of Minecraft Java Edition.
Documentation
1
2
3
4
5
6
7
8
9
//! Used to wrangle common internally used imports
pub use {
    super::{namespaced_id::NamespacedId, validate::Validate},
    serde::{Deserialize, Serialize},
    std::{
        collections::HashMap,
        fmt::{Debug, Display, Formatter, Result as FmtResult},
    },
};