Apex Legends API (in Rust)

This package utilizes the Apex Legends Status (https://apexlegendsstatus.com) API.

Usage Example:

```rust use apex_legends;

[tokio::main]

async fn main() { match apexlegends::getuser("HeyImLifeline".tostring(), "yourapi_key").await { Ok(data) => println!("You are level {}.", data.global.level), Err(e) => { println!("there was an error!: {}", e) } } } ```

I have no affiliation with Apex Legends, EA, or Apex Legends Status.