Align the Rust, Python, WASM, Conda, docs, and lockfile version markers to 1.0.6 so the published artifacts and release automation agree on a single release number. Add a proper 1.0.6 changelog entry in both CHANGELOG.md and the docs release notes, covering the pre-push gate, expanded Rust and WASM surface, benchmark refresh, and CI hardening work shipped since v1.0.4. Validate the release preparation with the repo-managed pre-push suite so version, changelog, Rust, Python, docs, WASM, and API-manifest checks all pass before tagging.
31 lines
767 B
TOML
31 lines
767 B
TOML
[package]
|
|
name = "ferro_ta_core"
|
|
version = "1.0.6"
|
|
edition = "2021"
|
|
description = "Pure Rust core indicator library — no PyO3, no numpy dependency"
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
repository = "https://github.com/pratikbhadane24/ferro-ta"
|
|
homepage = "https://github.com/pratikbhadane24/ferro-ta#readme"
|
|
documentation = "https://docs.rs/ferro_ta_core"
|
|
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"]
|