Skip to main content

upstox_rust_sdk/
lib.rs

1//! A Rust client for communicating with the [Upstox API](<https://upstox.com/uplink/>).
2
3//! Upstox API is a set of rest APIs that provide data required to build a complete investment and trading platform. Execute orders in real time, manage user portfolio, stream live market data (using Websockets), and a lot more with this crate.
4
5//! Refer to [`client`] for usage guides.
6mod apis;
7pub mod client;
8pub mod constants;
9pub mod models;
10pub mod protos;
11pub mod rate_limiter;
12mod utils;
13pub mod ws_client;