[package]
edition = "2021"
name = "zrsclient"
version = "0.3.0"
authors = [
"Vaibhav Ranjith",
"Bhoopathi Sai Varun Reddy",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust SDK for the Zerodha Kite Connect trading API — REST endpoints plus WebSocket market-data streaming, with built-in retry and reconnect."
homepage = "https://gitlab.com/aphrodite10944/zrsclient"
documentation = "https://docs.rs/zrsclient"
readme = "README.md"
keywords = [
"zerodha",
"kite",
"kiteconnect",
"trading",
"stock-market",
]
categories = [
"api-bindings",
"finance",
]
license = "MIT OR Apache-2.0"
repository = "https://gitlab.com/aphrodite10944/zrsclient"
[lib]
name = "zrsclient"
path = "src/lib.rs"
[dependencies.byteorder]
version = "1.5.0"
[dependencies.csv]
version = "1.3.0"
[dependencies.futures-util]
version = "0.3"
[dependencies.log]
version = "0.4.21"
[dependencies.reqwest]
version = "0.11.22"
features = [
"blocking",
"json",
]
[dependencies.serde]
version = "1.0.139"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tokio]
version = "1"
features = [
"rt",
"macros",
"time",
"sync",
"net",
"io-util",
]
[dependencies.tokio-tungstenite]
version = "0.21"
features = [
"connect",
"rustls-tls-webpki-roots",
]
[dependencies.toml]
version = "0.8.8"
[dependencies.url]
version = "2.5.0"
[dev-dependencies.mockito]
version = "1.2.0"