mirror of
https://github.com/NexVeridian/ark-invest-api-rust.git
synced 2025-09-02 01:49:11 +00:00
26 lines
707 B
TOML
26 lines
707 B
TOML
[package]
|
|
name = "ark-invest-api-rust"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
polars = { version = "0.35", 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.12", features = ["redoc", "axum"] }
|
|
schemars = { version = "0.8", features = ["chrono"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
glob = { version = "0.3" }
|
|
strum_macros = "0.25"
|
|
tower = { version = "0.4", features = ["limit", "buffer"] }
|
|
tower-http = { version = "0.4", features = ["compression-zstd", "cors"] }
|
|
tower_governor = "0.1"
|