quantforge 0.1.0

Deterministic CLI-first market data ingestion and backtesting framework in Rust.
Documentation
[package]
name = "quantforge"
version = "0.1.0"
edition = "2024"
rust-version = "1.85"
description = "Deterministic CLI-first market data ingestion and backtesting framework in Rust."
license = "MIT"
repository = "https://github.com/formaldehid/quantforge"
homepage = "https://github.com/formaldehid/quantforge"
readme = "README.md"
keywords = ["trading", "backtesting", "quant", "cli", "binance"]
categories = ["command-line-utilities", "finance"]
exclude = [
  ".github/",
  "scripts/",
]

[lib]
name = "quantforge"
path = "src/lib.rs"

[[bin]]
name = "quantforge"
path = "src/main.rs"

[dependencies]
anyhow = "1"
async-trait = "0.1"
clap = { version = "4", features = ["derive", "env"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
rusqlite = { version = "0.32", features = ["bundled"] }
rust_decimal = { version = "1", features = ["serde", "std"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "1"
time = { version = "0.3", features = ["formatting", "macros", "parsing"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
url = "2"

[dev-dependencies]
assert_cmd = "2"
predicates = "3"
tempfile = "3"

[profile.release]
lto = "thin"
codegen-units = 1
strip = "symbols"