bungie 0.1.2

A Rust crate for interacting with the Bungie.net API
Documentation

bungie-rs Build Status

A Rust crate for interacting with the Bungie.net API

NOTE: This crate is in alpha and highly unstable!

Features

A direct 1:1 link to the Bungie.net API

Usage

extern crate bungie;
extern crate dotenv;
extern crate failure;

use bungie::BungieClient;
use std::env;
use dotenv::dotenv;

fn main() -> Result<(), failure::Error> {
    dotenv()?;
    let bungie = BungieClient::new(env::var("API_KEY")?);
    let manifest = bungie.destiny2().get_destiny_manifest()?;
    println!("{}", manifest.response.version);
    Ok(())
}