-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 852 Bytes
/
Cargo.toml
File metadata and controls
29 lines (26 loc) · 852 Bytes
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
26
27
28
29
[package]
name = "strataquant"
version = "0.5.1"
edition = "2021"
authors = ["Altug Tatlisu <altug@dslabs.network>"]
description = "Truth in crypto backtesting - Production-grade backtesting engine with honest metrics"
repository = "https://github.com/ChronoCoders/strataquant"
license = "MIT"
keywords = ["cryptocurrency", "backtesting", "trading", "bitcoin", "quantitative"]
categories = ["finance", "simulation"]
[dependencies]
polars = { version = "0.44", features = ["lazy", "parquet", "dtype-date"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
clap = { version = "4.5", features = ["derive"] }
chrono = "0.4"
reqwest = { version = "0.12", features = ["blocking", "json"] }
anyhow = "1.0"
rayon = "1.10"
plotters = "0.3"
[lib]
name = "strataquant"
path = "src/lib.rs"
[[bin]]
name = "strataquant"
path = "src/main.rs"