minecraft_utils 0.1.0

Utilities for working with minecraft and the mojang api
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Interface for the HTTP Mojang API.

## Examples


```rust
use minecraft_utils::mojang_api::{ Profile, get_username_uuid };

let uuid = get_username_uuid("brecert").unwrap();
let profile = Profile::fetch(&uuid).unwrap();

assert_eq!(
    profile.textures().skin.url,
    "http://textures.minecraft.net/texture/b8130282b80cc08872bfc858975350ab3f3fcd4b1d18717bfb5b7b838fce4eaa"
);
```