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