steam-client-rs 0.1.3

Steam client for Rust - Individual and Anonymous user account types
Documentation
1
2
3
4
5
6
7
8
//! Cache module for Steam client data.
//!
//! This module provides caching mechanisms with TTL (time-to-live) expiration
//! for various Steam data types to reduce redundant API calls.

pub mod persona;

pub use persona::{CachedPersona, PersonaCache, PersonaCacheConfig};