-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (34 loc) · 946 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 = "feed_parser"
authors = ["Dwight Browne <[email protected]>"]
description = "POC parser for NYSE Historical Data"
license = "MIT"
README = "README.md"
repository = "https://github.com/dwightbrowne/feed_parser"
keywords = [ "Finance", "NYSE", "Historical Data", "Parser" ]
categories = ["finance"]
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = "0.4.19"
time = "0.3.21"
dotenvy = "0.15.7"
thousands = "0.2.0"
walkdir = "2.3.3"
priority-queue = "1.3.1"
rust_decimal = "1.3.0"
rust_decimal_macros = "1.30"
ndarray = "0.15.6"
plotly = { version="0.8.3", features = ["ndarray","kaleido"] }
nalgebra = "0.32.2"
approx = "0.5.1"
rustfft = "6.1.0"
welch-sde = "0.1.0"
rand = "0.8.5"
rand_distr = "0.4.3"
complot = "0.3.4"
instant = "0.1.12"
indicatif = "0.17.6"
minimum_redundancy = "0.2.4"
huffman-compress = "0.6.1"