[package]
edition = "2021"
name = "chrono-ta"
version = "2.2.2"
authors = ["Austin Starks <austin@starks-technology.com>"]
build = false
include = [
"/src/**/*",
"/examples/**/*",
"/tests/**/*",
"/Cargo.toml",
"/README.md",
"/CHANGELOG.md",
"/CONTRIBUTING.md",
"/LICENSE",
"/SECURITY.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Timestamp-aware, duration-windowed technical indicators for Rust"
homepage = "https://github.com/austin-starks/chrono-ta"
documentation = "https://docs.rs/chrono-ta"
readme = "README.md"
keywords = [
"technical-analysis",
"time-series",
"indicators",
"trading",
"simd",
]
categories = [
"science",
"algorithms",
]
license = "MIT"
repository = "https://github.com/austin-starks/chrono-ta"
[lib]
name = "chrono_ta"
path = "src/lib.rs"
[[example]]
name = "batch"
path = "examples/batch.rs"
[[example]]
name = "ema_crossover"
path = "examples/ema_crossover.rs"
[[example]]
name = "ohlcv"
path = "examples/ohlcv.rs"
[[example]]
name = "time_window"
path = "examples/time_window.rs"
[[test]]
name = "golden_regressions"
path = "tests/golden_regressions.rs"
[[test]]
name = "test"
path = "tests/test.rs"
[[test]]
name = "test_adaptive_replacement"
path = "tests/test_adaptive_replacement.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
[dependencies.wide]
version = "0.7"
[dev-dependencies.bincode]
version = "1.3.1"
[profile.release]
lto = true