forked from xemwebe/finql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (36 loc) · 1023 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
35
36
37
38
[package]
name = "finql"
version = "0.8.0-dev"
authors = ["Mark Beinker <[email protected]>"]
edition = "2018"
description = "A quantitative finance toolbox"
license = "MIT OR Apache-2.0"
repository = "https://github.com/xemwebe/finql"
readme = "README.md"
keywords = ["finance", "calendar", "bond", "period", "pricing"]
categories = ["date-and-time","mathematics"]
[dependencies]
chrono = { version = "0.4", features = ["serde"] }
text_io = "0.1"
computus = "1.0"
serde = { version = "1.0.*", features = ["derive"] }
serde_json = "1.0"
argmin = "0.3"
#tokio-postgres = "0.7"
yahoo_finance_api = "1.1"
gurufocus_api = "0.4"
rand = "0.8"
eodhistoricaldata_api = "0.3"
alpha_vantage = "0.5"
reqwest = "0.10"
scraper = "0.12"
csv = "1.1"
async-trait = "0.1"
tokio-compat-02 = "0.1"
finql-data = { path="finql-data" }
[dev-dependencies]
tokio-test = "0.4"
rusqlite = "0.24"
finql-sqlite = { path = "finql-sqlite" }
postgres = { version = "0.19", features = ["with-chrono-0_4"] }
finql-postgres = { path = "finql-postgres"}