steam-rs 0.5.1

Safe Rust bindings for the Steam Web API
Documentation
//! # Implements the `ISteamUser` interface
//!
//! **Note:** This implementation is incomplete!
//! The following endpoints are currently unimplemented:
//!
//! - CheckAppOwnership (requires publisher key)
//! - GetAppPriceInfo (requires publisher key)
//! - GetDeletedSteamIDs (requires publisher key)
//! - GetPublisherAppOwnership (requires publisher key)
//! - GetPublisherAppOwnershipChanges (requires publisher key)
//! - GrantPackage (requires publisher key)
//! - RevokePackage (requires publisher key)
//!
//! Endpoints that require a publisher key are not likely to be
//! implemented in the near future, as they cannot be tested by developers.

const INTERFACE: &str = "ISteamUser";

pub mod get_friend_list;
pub mod get_player_bans;
pub mod get_player_summaries;
pub mod get_user_group_list;
pub mod resolve_vanity_url;