bungie-rs

Crates.iobungie-rs
lib.rsbungie-rs
version0.1.0
sourcesrc
created_at2018-06-30 11:23:14.780744
updated_at2018-06-30 11:23:14.780744
descriptionA Rust crate for interacting with the Bungie.net API
homepage
repositoryhttps://github.com/inferiormartin/bungie-rs
max_upload_size
id72299
size4,834
Maarten Vos (maarten-vos)

documentation

README

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;

use bungie::BungieClient,

fn main() {
    let bungie = BungieClient::new("<api-key>").with_authentication_token("<oauth-token>");
    let manifest = bungie.destiny2().get_destiny_manifest();
}
Commit count: 31

cargo fmt