[package]
edition = "2024"
rust-version = "1.85"
name = "ta-indicators"
version = "0.1.0"
authors = ["Jake"]
build = false
exclude = [
"target/**",
"artifacts/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Warmup-exact Rust port of TA-Lib batch technical indicators"
documentation = "https://docs.rs/ta-indicators"
readme = "README.md"
keywords = [
"talib",
"technical-analysis",
"indicators",
"trading",
"candlestick",
]
categories = [
"algorithms",
"science",
]
license = "MIT AND BSD-3-Clause"
repository = "https://github.com/Jakeelamb/ta-indicators"
[lib]
name = "ta_indicators"
path = "src/lib.rs"
[[test]]
name = "talib_parity"
path = "tests/talib_parity.rs"
[[test]]
name = "talib_parity_ht"
path = "tests/talib_parity_ht.rs"
[[test]]
name = "upstream_talib_compare"
path = "tests/upstream_talib_compare.rs"
[dependencies]
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.talib-rs]
version = "0.1.2"
default-features = false