This commit is contained in:
Elijah McMorris 2023-08-10 10:10:45 +00:00 committed by NexVeridian@gmail.com
parent 1eda4729d4
commit fdc0515939
5 changed files with 183 additions and 82 deletions

View file

@ -1,10 +1,11 @@
[package]
name = "ark-invest-api-rust-data"
version = "0.1.0"
license = "Apache-2.0"
version = "1.0.0"
edition = "2021"
[dependencies]
polars = { version = "0.30", features = [
polars = { version = "0.32", features = [
"lazy",
"strings",
"parquet",
@ -16,7 +17,7 @@ polars = { version = "0.30", features = [
] }
reqwest = { version = "0.11", features = ["blocking", "gzip"] }
glob = { version = "0.3" }
clokwerk = "0.4.0"
clokwerk = "0.4"
strum_macros = "0.25"
strum = "0.25"
tokio = { version = "1.26", features = ["full"] }
@ -25,7 +26,7 @@ chrono = { version = "0.4", features = ["serde"] }
serde_json = "1.0"
rand = "0.8"
futures = "0.3"
lazy_static = "1.4.0"
lazy_static = "1.4"
[dev-dependencies]
serial_test = "*"