[package]
edition = "2024"
name = "indica"
version = "0.1.0"
authors = ["Devansh Tiwari"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast technical analysis indicators for stock markets — SMA, EMA, RSI, MACD, Bollinger Bands, ATR, and more"
homepage = "https://github.com/Devansh-365/indica"
documentation = "https://docs.rs/indica"
readme = "README.md"
keywords = [
"trading",
"technical-analysis",
"indicators",
"finance",
"stocks",
]
categories = [
"finance",
"mathematics",
]
license = "MIT"
repository = "https://github.com/Devansh-365/indica"
[lib]
name = "indica"
crate-type = [
"cdylib",
"lib",
]
path = "src/lib.rs"
[dependencies.napi]
version = "3"
features = ["napi4"]
[dependencies.napi-derive]
version = "3"
[dependencies.rayon]
version = "1.11"
[build-dependencies.napi-build]
version = "2"
[profile.release]
lto = true
codegen-units = 1
strip = true