gw2api-rs

An asynchronous wrapper for the offical Guild Wars 2 api using hyper (tokio).

``` use gw2apirs::Client; use gw2apirs::v2::build::Build;

let client = Client::new(); let build = Build::get(&client).await.unwrap(); ```

Or use the blocking client (requires the optional blocking feature).

``` use gw2apirs::blocking::Client; use gw2apirs::v2::build::Build;

let client = Client::new(); let build = Build::get(&client).unwrap(); ```

Implemented endpoints

License

Licensed under either - MIT License or - Apache License, Version 2.0 at your option.