[package]
edition = "2024"
name = "quantwave-polars"
version = "0.6.0"
authors = ["Mayank Lavania"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-performance, Polars-native technical analysis library for Rust."
homepage = "https://github.com/lavs9/quantwave"
readme = "README.md"
keywords = [
"trading",
"technical-analysis",
"polars",
"finance",
]
categories = [
"science",
"mathematics",
]
license = "MIT"
repository = "https://github.com/lavs9/quantwave"
resolver = "2"
[lib]
name = "quantwave_polars"
path = "src/lib.rs"
[[bin]]
name = "benchmark_polars"
path = "src/bin/benchmark_polars.rs"
[[test]]
name = "bt"
path = "tests/bt.rs"
[[test]]
name = "sweep"
path = "tests/sweep.rs"
[dependencies.polars]
version = "0.46"
features = [
"lazy",
"dtype-struct",
"moment",
"cum_agg",
"rank",
]
[dependencies.quantwave-backtest]
version = "0.6.0"
[dependencies.quantwave-core]
version = "0.6.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.thiserror]
version = "1.0"
[dev-dependencies.approx]
version = "0.5"