minehut 1.0.1

Simple Rust wrapper for the Minehut API
Documentation
#[derive(Debug, serde::Deserialize)]
#[serde(rename_all = "camelCase")]
/// Struct represents response for player distribution
pub struct PlayerDistribution {
    pub bedrock_total: usize,
    pub java_total: usize,
    pub bedrock_lobby: usize,
    pub bedrock_player_server: usize,
    pub java_lobby: usize,
    pub java_player_server: usize
} 

#[derive(Debug, serde::Deserialize)]
/// Struct represents response for simple stats
pub struct SimpleStats {
    pub player_count: usize,
    pub server_count: usize,
    pub server_max: usize,
    pub ram_count: usize,
    pub ram_max: usize
}

#[derive(Debug, serde::Deserialize)]
/// Struct represents response for home page stats
pub struct HomePageStats {
    pub server_count: usize,
    pub user_count: usize
}