rsteam 0.2.1

rsteam is a easy to use async wrapper for the steam web api
Documentation
//! Easy to use API wrapper for Steam web API.
//!
//! Provides an easy way to use Steam web API asynchronously. The client is lightweight,
//! since it's build on top of [hyper]
//!
//! [hyper]: https://hyper.rs/

mod client;
pub mod error;
#[macro_use]
mod macros;
pub mod legacy;
pub mod player_service;
pub mod steam_apps;
pub mod steam_id;
pub mod steam_news;
pub mod steam_user;
pub mod steam_user_stats;
mod utils;

pub use client::SteamClient;
pub use steam_id::SteamID;