forked from fbriden/yahoo-finance-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (32 loc) · 1.22 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
33
34
35
36
37
38
[package]
name = "yahoo-finance"
version = "0.3.0"
authors = [ "Fred Briden <[email protected]>" ]
license = "MIT"
description = "An API to get financial data from Yahoo."
keywords = [ "yahoo", "finance", "stocks" ]
readme = "README.md"
edition = "2018"
include = [ "Cargo.toml", "LICENSE", "README.md", "src/**/*.rs" ]
repository = "https://github.com/fbriden/yahoo-finance-rs"
homepage = "https://github.com/fbriden/yahoo-finance-rs"
[dependencies]
base64 = "^0.1"
chrono = { version = "^0.4", features = [ "serde" ] }
futures = "^0.3"
futures-util = { version = "^0.3", default-features = false, features = [ "async-await", "sink", "std" ] }
market-finance = { git = "https://github.com/fraschm1998/market-finance-rs", branch = "master" }
protobuf = "^2"
reqwest = { version = "^0.11", features = [ "rustls-tls" ], default-features = false }
serde = { version = "^1", features = [ "derive" ] }
serde_json = "^1"
snafu = "^0.6"
tokio = { version = "^1.9", default-features = false, features = [ "macros", "rt-multi-thread" ]}
tokio-stream = "^0.1"
tokio-tungstenite = { version = "*", features = [ "rustls-tls" ] }
url = "^2"
[dev-dependencies]
mockito = "^0.30"
tokio-test = "^0.4"
[build-dependencies]
protobuf-codegen-pure = "2.24.1"