-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
25 lines (24 loc) · 949 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
[package]
name = "stock-trading-cli-with-async-streams"
version = "0.1.0"
edition = "2021"
authors = ["Ivan Lazarević"]
description = "Stock-Tracking CLI with Async Streams (HFT)"
repository = "https://github.com/ivanbgd/stock-trading-cli-with-async-streams"
license = "MIT"
keywords = ["finance", "fintech", "hft", "stock", "trading"]
categories = ["finance"]
[dependencies]
actix = { version = "0.13.5" }
actix-rt = { version = "2.10.0" }
anyhow = { version = "1.0.89" }
axum = { version = "0.7.6", features = ["macros"] }
clap = { version = "4.5.17", features = ["derive"] }
futures = { version = "0.3.30" }
rayon = { version = "1.10.0" }
serde = { version = "1.0.210" }
time = { version = "0.3.36", features = ["formatting", "parsing"] }
tokio = { version = "1.40.0", features = ["macros", "rt", "rt-multi-thread"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
yahoo_finance_api = { version = "2.2.1" }