robinrust 1.0.3

A lightweight, async Rust library for interacting with Robinhood's Crypto trading endpoints.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Core library for the `robinrust` crate.
//!
//! This crate provides simple, async Rust bindings for a subset of Robinhood's
//! crypto endpoints, including authentication, account info, market data, and
//! trading utilities. See individual modules for details.

extern crate core;

pub mod auth;
pub mod account;
pub mod market_data;
pub mod trading;