[package]
edition = "2021"
name = "backtest_rs"
version = "0.1.0"
authors = ["Himanshu <hyattherate2005@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance, event-driven HFT backtesting engine. Supports tick data and strict spread simulation."
homepage = "https://github.com/himanshu-at/backtest_rs"
readme = "README.md"
keywords = [
"csv",
"parser",
"trading",
"backtesting",
"finance",
]
license-file = "LICENSE"
repository = "https://github.com/himanshu-at/backtest_rs"
[lib]
name = "backtest_rs"
path = "src/lib.rs"
[[bin]]
name = "backtest_rs"
path = "src/main.rs"
[[example]]
name = "main"
path = "examples/main.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4.5.54"
features = ["derive"]
[dependencies.colored]
version = "2.0"
[dependencies.indicatif]
version = "0.18.3"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tabled]
version = "0.15"
[dependencies.tickparse]
version = "0.1.0"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1