maarten-vos / bungie-rs

A Rust crate for interacting with the Bungie.net API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

bungie-rs Build Status Crates.io MIT licensed

A Rust crate for interacting with the Bungie.net API

While the project is called "bungie-rs", it mostly focusses on the Destiny 2 part of the API.

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);
    Ok(())
}

About

A Rust crate for interacting with the Bungie.net API

License:MIT License


Languages

Language:Rust 100.0%