-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (42 loc) · 1.12 KB
/
Cargo.toml
File metadata and controls
44 lines (42 loc) · 1.12 KB
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
39
40
41
42
43
44
[package]
name = "finql"
version = "0.13.0"
authors = ["Mark Beinker <mwb@quantlink.de>"]
edition = "2018"
description = "A quantitative finance toolbox"
license = "MIT OR Apache-2.0"
repository = "https://github.com/xemwebe/finql"
readme = "README.md"
keywords = ["finance", "bond", "period", "pricing"]
categories = ["date-and-time", "mathematics"]
[dependencies]
time = { version = "0.3", features = ["local-offset", "serde"] }
text_io = "0.1"
computus = "1.0"
serde = { version = "1.0.*", features = ["derive"] }
serde_json = "1.0.*"
argmin = { version = "0.10", default-features = false }
yahoo_finance_api = "4.1"
gurufocus_api = "0.9"
rand = "0.9"
eodhistoricaldata_api = "0.5"
alpha_vantage = { version = "0.11", features = ["reqwest-client"] }
reqwest = "0.12"
async-trait = "0.1"
log = "0.4"
thiserror = "2.0"
futures = "0.3"
sqlx = { version = "0.8", default-features = false, features = [
"runtime-tokio-rustls",
"postgres",
"macros",
"json",
"migrate",
"time"
] }
cal-calc = "0.2"
[dev-dependencies]
tokio = { version = "1.47", features = ["full"] }
plotters = "^0.3.1"
pretty_env_logger = "0.5"
chrono = "0.4"