fume 0.0.2

A strongly-opinionated Rust wrapper for steam web APIs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![doc = include_str!(concat!("../", std::env!("CARGO_PKG_README")))]

mod auth;
mod backend;
mod error;
mod steam;
mod user;

pub use auth::{ApiKey, Auth, Unauthorize};
pub use backend::Backend;
pub use error::Error;
pub use steam::{ServerInfo, Steam};
pub use user::{Friend, User};