This commit is contained in:
Elijah McMorris 2023-03-14 23:40:18 +00:00 committed by NexVeridian@gmail.com
commit 3a34f6c1a3
12 changed files with 705 additions and 0 deletions

24
Cargo.toml Normal file
View file

@ -0,0 +1,24 @@
[package]
name = "ark-invest-api-rust"
version = "0.1.0"
edition = "2021"
[dependencies]
polars = { version = "0.28", features = [
"lazy",
"strings",
"parquet",
"round_series",
"serde",
"json",
] }
axum = "0.6"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.26", features = ["full"] }
aide = { version = "0.10", features = ["redoc", "axum"] }
schemars = { version = "0.8", features = ["chrono"] }
chrono = { version = "0.4", features = ["serde"] }
glob = { version = "0.3" }
strum_macros = "0.24"
tower = { version = "0.4.12", features = ["limit", "buffer"] }