30 lines
767 B
TOML
30 lines
767 B
TOML
[package]
|
|
name = "ferro_ta_core"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Pure Rust core indicator library — no PyO3, no numpy dependency"
|
|
license = "MIT"
|
|
repository = "https://github.com/pratikbhadane24/ferro-ta"
|
|
homepage = "https://github.com/pratikbhadane24/ferro-ta#readme"
|
|
documentation = "https://github.com/pratikbhadane24/ferro-ta#readme"
|
|
keywords = ["technical-analysis", "trading", "indicators", "finance", "ta-lib"]
|
|
categories = ["finance", "mathematics"]
|
|
|
|
[lib]
|
|
name = "ferro_ta_core"
|
|
crate-type = ["lib"]
|
|
|
|
[dependencies]
|
|
wide = { version = "1.1.1", optional = true }
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.8", features = ["html_reports"] }
|
|
|
|
[[bench]]
|
|
name = "indicators"
|
|
harness = false
|
|
|
|
[features]
|
|
wide = ["dep:wide"]
|
|
simd = ["wide"]
|