rustfm-scrobble 0.1.1

Last.fm Scrobble library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! # rustfm-scrobble
//!
//! Client for the Last.fm Scrobble API v2.0.

extern crate hyper;
extern crate hyper_native_tls;
extern crate crypto;

#[macro_use]
extern crate serde_derive;
extern crate serde_json;

mod scrobbler;
mod client;
mod auth;
mod dto;

pub use scrobbler::Scrobbler;