rsteam/lib.rs
1//! Easy to use API wrapper for Steam web API.
2//!
3//! Provides an easy way to use Steam web API asynchronously. The client is lightweight,
4//! since it's build on top of [hyper]
5//!
6//! [hyper]: https://hyper.rs/
7
8mod client;
9pub mod error;
10#[macro_use]
11mod macros;
12pub mod legacy;
13pub mod player_service;
14pub mod steam_apps;
15pub mod steam_id;
16pub mod steam_news;
17pub mod steam_user;
18pub mod steam_user_stats;
19mod utils;
20
21pub use client::SteamClient;
22pub use steam_id::SteamID;