-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
23 lines (21 loc) · 847 Bytes
/
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
[package]
name = "trade_vision"
version = "0.1.1"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Unofficial API for TradingView"
homepage = "https://github.com/Hysterelius/trade_vision"
repository = "https://github.com/Hysterelius/trade_vision"
documentation = "https://docs.rs/trade_vision/latest/trade_vision/"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.11", features = ["json"] }
tokio = { version = "1", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_with = "3.2.0"
serde_json = "1.0.91"
tungstenite = {version = ">0.19.0", features = ["rustls-tls-native-roots"]}
tokio-tungstenite = {version = ">0.19.0", features = ["rustls-tls-native-roots"]}
http = "0.2.8"
rand = "0.8.5"
futures-util = "0.3.25"