//! Authentication primitives for the Robinhood API client.
//!
//! Provides `AuthState`, a state machine that tracks the current authentication
//! phase (unauthenticated, challenged, MFA-required, device-verification, or
//! authenticated), and `TokenCache` / `CachedToken` for persisting OAuth
//! tokens to disk.
pub use AuthState;
pub use ;