hypixel/util/mod.rs
1//! Helpers for processing data returned by the API: skill/XP leveling math,
2//! bazaar/auction market summaries, networth estimation, and (behind the `nbt`
3//! feature) decoding of base64+gzip NBT item blobs.
4
5pub mod leveling;
6pub mod market;
7pub mod networth;
8
9#[cfg(feature = "nbt")]
10pub mod nbt;