2026-01-28 06:30:03 +05:30
[ package ]
name = "raptorbt"
2026-02-02 04:24:45 +05:30
version = "0.2.1"
2026-01-28 06:30:03 +05:30
edition = "2021"
2026-01-29 23:11:15 +05:30
description = "High-performance Rust backtesting engine with Python bindings. Drop-in VectorBT replacement with up insanely faster performance at fractional memory footprint."
authors = [ "Alphabench <contact@alphabench.in>" ]
2026-01-28 06:30:03 +05:30
license = "MIT"
2026-01-29 23:11:15 +05:30
repository = "https://github.com/alphabench/raptorbt"
homepage = "https://github.com/alphabench/raptorbt"
readme = "README.md"
keywords = [ "backtesting" , "trading" , "quantitative-finance" , "rust" , "python" ]
categories = [ "finance" , "simulation" ]
2026-01-28 06:30:03 +05:30
[ lib ]
name = "raptorbt"
crate-type = [ "cdylib" , "rlib" ]
[ dependencies ]
pyo3 = { version = "0.20" , features = [ "extension-module" ] }
numpy = "0.20"
rayon = "1.8"
thiserror = "1.0"
serde = { version = "1.0" , features = [ "derive" ] }
[ dev-dependencies ]
criterion = "0.5"
approx = "0.5"
[[ bench ]]
name = "backtest_benchmark"
harness = false
[ profile . release ]
lto = true
codegen-units = 1
opt-level = 3
strip = true