upstox-rust-sdk 1.0.0

SDK to access Upstox's Uplink APIs programmatically
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! A Rust client for communicating with the [Upstox API](<https://upstox.com/uplink/>).

//! 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.

//! Refer to [`client`] for usage guides.
mod apis;
pub mod client;
pub mod constants;
pub mod models;
pub mod protos;
pub mod rate_limiter;
mod utils;
pub mod ws_client;