| Crates.io | bungie-rs |
| lib.rs | bungie-rs |
| version | 0.1.0 |
| created_at | 2018-06-30 11:23:14.780744+00 |
| updated_at | 2018-06-30 11:23:14.780744+00 |
| description | A Rust crate for interacting with the Bungie.net API |
| homepage | |
| repository | https://github.com/inferiormartin/bungie-rs |
| max_upload_size | |
| id | 72299 |
| size | 4,834 |
A Rust crate for interacting with the Bungie.net API
NOTE: This crate is in alpha and highly unstable!
A direct 1:1 link to the Bungie.net API
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();
}