-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
33 lines (30 loc) · 943 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
24
25
26
27
28
29
30
31
32
33
[package]
name = "tradingview"
description = "Rust bindings for leveraging TradingView functionalities"
version = "0.1.1"
edition = "2021"
authors = ["Jesper Håkansson <[email protected]>"]
repository = "https://github.com/drager/tradingview.git"
license = "Apache-2.0"
[dependencies]
reqwest = { version = "0.11.4", features = ["json", "multipart", "cookies"] }
anyhow = "1.0.42"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1", features = [ "full" ] }
tokio-tungstenite = { version = "0.23.0", features = ["url"] }
chrono = { version = "0.4.19", features = ["serde"] }
futures = "0.3.16"
typed-builder = "0.18.0"
thiserror = "1.0.25"
regex = "1.8.3"
either = { version = "1.8.1", features = ["serde"]}
log = "0.4.18"
rand = "0.8.5"
libreauth = "0.16.0"
env_logger = "0.11.5"
async-stream = "0.3.6"
[dev-dependencies]
httpmock = "0.6"
[features]
native-tls = ["tokio-tungstenite/native-tls"]