forked from xemwebe/yahoo_finance_api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (31 loc) · 1009 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
34
[package]
name = "yahoo_finance_api"
version = "2.3.0"
authors = [
"Mark Beinker <[email protected]>",
"Claus Matzinger <[email protected]>",
]
edition = "2018"
description = "A rust adapter for the yahoo! finance API to fetch histories of market data quotes."
license = "MIT OR Apache-2.0"
repository = "https://github.com/xemwebe/yahoo_finance_api"
readme = "README.md"
keywords = ["finance", "yahoo", "stock", "quote"]
categories = ["api-bindings"]
include = ["src/**/*", "LICENSE-*", "README.md"]
[dependencies]
reqwest = { version = "0.12", default-features = false, features = [
"json",
"rustls-tls",
] }
rust_decimal = { version = "1.36", optional = true }
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
thiserror = "1.0"
time = { version = "0.3", features = ["macros"] }
[dev-dependencies]
tokio-test = "0.4"
tokio = { version = "1.7", features = ["macros", "rt-multi-thread"] }
[features]
blocking = ["reqwest/blocking"]
decimal = ["rust_decimal"]