[package]
edition = "2024"
name = "rustockstats"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Stockstats-like technical indicators on top of Polars DataFrame."
homepage = "https://github.com/jealous/rustockstats"
documentation = "https://docs.rs/rustockstats"
readme = "README.md"
keywords = [
"stocks",
"technical-analysis",
"polars",
"indicators",
]
categories = ["finance"]
license = "BSD-3-Clause"
repository = "https://github.com/jealous/rustockstats"
[lib]
name = "rustockstats"
path = "src/lib.rs"
[[test]]
name = "indicators"
path = "tests/indicators.rs"
[dependencies.polars]
version = "0.51"
features = [
"fmt",
"csv",
]
[dependencies.regex]
version = "1.11"
[dev-dependencies.approx]
version = "0.5"