minecraft_utils 0.1.0

Utilities for working with minecraft and the mojang api
Documentation
#![doc = include_str!("./README.md")]

/// Utilities for finding and checking servers blocked by Mojang.
pub mod blocked_servers;

/// Errors used throughout this library.
pub mod error;

/// Fetching the profile/textures, or username history of a user.
pub mod profile;

/// Fetching statistics relating the amount of games sold by Mojang.
pub mod stats;

/// Utilities for fetching basic user data, such as resolving a username to a UUID.
pub mod user;

#[doc(hidden)]
pub mod client;

pub use blocked_servers::BlockedServers;
pub use profile::{get_username_history, Profile};
pub use user::get_username_uuid;