rhood-core 0.2.0

Async Rust client library for the Robinhood trading API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! 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.

mod auth_state;
mod token_cache;

pub use auth_state::AuthState;
pub use token_cache::{CachedToken, TokenCache};