hypixel/util/mod.rs
1//! Helpers for processing data returned by the API: skill/XP leveling math,
2//! SkyBlock curves (catacombs, slayers, pets, HOTM, profile level), bazaar and
3//! auction market analysis, networth estimation with modifier valuation, and
4//! (behind the `nbt` feature) decoding of base64+gzip NBT item blobs.
5
6pub mod leveling;
7pub mod market;
8pub mod networth;
9pub mod skyblock;
10
11#[cfg(feature = "nbt")]
12pub mod nbt;