[package]
edition = "2021"
rust-version = "1.89"
name = "fast-ta"
version = "0.2.0"
authors = ["TA-Lib Rust Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance technical analysis indicators with batch, prepared, and streaming APIs"
readme = false
keywords = [
"technical-analysis",
"trading",
"indicators",
"ta-lib",
"finance",
]
categories = [
"algorithms",
"data-structures",
"mathematics",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/XMethues/fast-ta"
resolver = "3"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
core_error = []
default = [
"f64",
"std",
]
f32 = []
f64 = []
simd-qualification = []
std = []
[lib]
name = "fast_ta"
path = "src/lib.rs"
[[test]]
name = "aarch64_typprice_qualification"
path = "tests/aarch64_typprice_qualification.rs"
[[test]]
name = "cycle"
path = "tests/cycle.rs"
[[test]]
name = "cycle_hilbert_outputs"
path = "tests/cycle_hilbert_outputs.rs"
[[test]]
name = "cycle_trend_mode"
path = "tests/cycle_trend_mode.rs"
[[test]]
name = "directional_movement"
path = "tests/directional_movement.rs"
[[test]]
name = "indicator_execution_contracts"
path = "tests/indicator_execution_contracts.rs"
[[test]]
name = "inventory"
path = "tests/inventory.rs"
[[test]]
name = "math_operators"
path = "tests/math_operators.rs"
[[test]]
name = "math_transform"
path = "tests/math_transform.rs"
[[test]]
name = "migration_guide_examples"
path = "tests/migration_guide_examples.rs"
[[test]]
name = "momentum_change"
path = "tests/momentum_change.rs"
[[test]]
name = "momentum_composite"
path = "tests/momentum_composite.rs"
[[test]]
name = "momentum_moving_average"
path = "tests/momentum_moving_average.rs"
[[test]]
name = "momentum_range_position"
path = "tests/momentum_range_position.rs"
[[test]]
name = "momentum_relative_strength"
path = "tests/momentum_relative_strength.rs"
[[test]]
name = "overlap_hilbert"
path = "tests/overlap_hilbert.rs"
[[test]]
name = "overlap_kama_mavp"
path = "tests/overlap_kama_mavp.rs"
[[test]]
name = "overlap_moving_averages"
path = "tests/overlap_moving_averages.rs"
[[test]]
name = "overlap_rolling"
path = "tests/overlap_rolling.rs"
[[test]]
name = "overlap_sar"
path = "tests/overlap_sar.rs"
[[test]]
name = "overlap_sma"
path = "tests/overlap_sma.rs"
[[test]]
name = "pattern_recognition"
path = "tests/pattern_recognition.rs"
[[test]]
name = "price_transform"
path = "tests/price_transform.rs"
[[test]]
name = "statistic"
path = "tests/statistic.rs"
[[test]]
name = "volatility"
path = "tests/volatility.rs"
[[test]]
name = "volume"
path = "tests/volume.rs"
[[test]]
name = "x86_typprice_qualification"
path = "tests/x86_typprice_qualification.rs"
[dependencies.aligned-vec]
version = "0.6.4"
[dependencies.wide]
version = "1.5.0"
features = [
"std",
"std",
]
[dev-dependencies.criterion]
version = "0.8.2"
features = ["html_reports"]
[dev-dependencies.proptest]
version = "1.11.0"
[dev-dependencies.quickcheck]
version = "1.1.0"