[package]
edition = "2021"
rust-version = "1.81"
name = "centaur_technical_indicators"
version = "1.3.0"
authors = ["ChironMind"]
build = false
include = [
"/src",
"/examples",
"/README.md",
"/CHANGELOG.md",
"/LICENSE*",
"/Cargo.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fully configurable technical indicators library with over 70 unique indicators written in pure Rust."
homepage = "https://tech.centaurresearchtechnologies.com/"
documentation = "https://docs.rs/centaur_technical_indicators"
readme = "README.md"
keywords = [
"trading",
"technical-analysis",
"finance",
"indicators",
"rust",
]
categories = [
"finance",
"mathematics",
"science",
"algorithms",
]
license = "MIT"
repository = "https://github.com/ChironMind/CentaurTechnicalIndicators-Rust"
[lib]
name = "centaur_technical_indicators"
path = "src/lib.rs"
[[example]]
name = "bollinger"
path = "examples/bollinger.rs"
[[example]]
name = "composing_indicators"
path = "examples/composing_indicators.rs"
[[example]]
name = "reference"
path = "examples/reference.rs"
[[example]]
name = "rsi"
path = "examples/rsi.rs"