Async client for the Kite Connect WebSocket API
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 32 lines 1.1 kB view raw
1[package] 2authors = ["Kaushik Chakraborty <git@kaushikc.org>"] 3name = "kiteticker-async" 4version = "0.1.1" 5edition = "2021" 6license = "Apache-2.0" 7readme = "README.md" 8repository = "https://github.com/kaychaks/kiteticker-async" 9documentation = "https://docs.rs/kiteticker-async/0.1.0/kiteticker-async/" 10description = """ 11 Async version of the ticker module of the kiteconnect-rs crate. 12""" 13categories = ["asynchronous", "finance"] 14keywords = ["ticker", "zerodha", "web-sockets", "trading", "real-time"] 15 16[dependencies] 17serde_json = "1.0" 18serde = { version = "1.0", features = ["derive"] } 19tokio = { version = "1.28.2", features = ["full"] } 20tokio-tungstenite = { version = "0.20.1", features = ["native-tls"] } 21futures-util = { version = "0.3.28", features = ["sink"] } 22tokio-stream = { version = "0.1.14", features = ["full"] } 23url = "2.4.1" 24serde_with = "3.4.0" 25chrono = { version = "0.4.31", features = ["serde"] } 26 27[dev-dependencies] 28tokio = { version = "1", features = ["test-util"] } 29chrono = { version = "0.4.31", features = ["serde"] } 30base64 = "0.21.5" 31sha2 = "0.10" 32hex = "0.4.3"