Bumps [wide](https://github.com/Lokathor/wide) from 1.2.0 to 1.4.0. - [Changelog](https://github.com/Lokathor/wide/blob/main/changelog.md) - [Commits](https://github.com/Lokathor/wide/compare/v1.2.0...v1.4.0) --- updated-dependencies: - dependency-name: wide dependency-version: 1.4.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
34 lines
925 B
TOML
34 lines
925 B
TOML
[package]
|
|
name = "ferro_ta_core"
|
|
version = "1.1.4"
|
|
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.4.0", optional = true }
|
|
serde = { version = "1.0", features = ["derive"], optional = true }
|
|
serde_json = { version = "1.0", optional = true }
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.8", features = ["html_reports"] }
|
|
|
|
[[bench]]
|
|
name = "indicators"
|
|
harness = false
|
|
|
|
[features]
|
|
wide = ["dep:wide"]
|
|
simd = ["wide"]
|
|
serde = ["dep:serde", "dep:serde_json"]
|