This commit is contained in:
Elijah McMorris 2023-04-03 15:24:38 -07:00
commit 7e12fc1e65
Signed by: NexVeridian
SSH key fingerprint: SHA256:bsA1SKZxuEcEVHAy3gY1HUeM5ykRJl0U0kQHQn0hMg8
11 changed files with 647 additions and 0 deletions

19
Cargo.toml Normal file
View file

@ -0,0 +1,19 @@
[package]
name = "ark-invest-api-rust-data"
version = "0.1.0"
edition = "2021"
[dependencies]
polars = { version = "0.28", features = [
"lazy",
"strings",
"parquet",
"round_series",
] }
reqwest = { version = "0.11", features = ["blocking"] }
glob = { version = "0.3" }
clokwerk = "0.4.0"
strum_macros = "0.24"
strum = "0.24"
tokio = { version = "1.26", features = ["full"] }
openssl = { version = "0.10", features = ["vendored"] }