vector-ta 0.1.4

High-performance technical analysis indicators with optional SIMD/CUDA and language bindings.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "vector-ta"
version = "0.1.4"
build = "build.rs"
include = [
    "/Cargo.toml",
    "/README.md",
    "/LICENSE",
    "/build.rs",
    "/src/lib.rs",
    "/src/bin/generate_references.rs",
    "/src/bindings/**/*.rs",
    "/src/cuda/**/*.rs",
    "/src/indicators/**/*.rs",
    "/src/utilities/**/*.rs",
    "/benches/**",
    "/kernels/cuda/**/*.cu",
    "/kernels/cuda/**/*.cuh",
    "/kernels/ptx/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance technical analysis indicators with optional SIMD/CUDA and language bindings."
homepage = "https://vectoralpha.dev/projects/ta"
documentation = "https://vectoralpha.dev/projects/ta"
readme = "README.md"
keywords = [
    "technical-analysis",
    "trading",
    "indicators",
    "finance",
]
categories = ["algorithms"]
license = "Apache-2.0"
repository = "https://github.com/VectorAlpha-dev/VectorTA"

[package.metadata.wasm-pack.profile.release]
wasm-opt = false

[package.metadata.wasm-pack.profile.dev]
wasm-opt = false

[features]
cuda = [
    "cust",
    "cust_derive",
]
cuda-build-ptx = ["cuda"]
default = []
nightly-avx = []
proptest = []
python = [
    "pyo3",
    "numpy",
]
wasm = [
    "wasm-bindgen",
    "serde-wasm-bindgen",
    "js-sys",
]

[lib]
name = "vector_ta"
crate-type = [
    "cdylib",
    "rlib",
]
path = "src/lib.rs"
doctest = false

[[bin]]
name = "generate_references"
path = "src/bin/generate_references.rs"

[[bench]]
name = "cuda_bench"
path = "benches/cuda_bench.rs"
harness = false
required-features = ["cuda"]

[[bench]]
name = "indicator_benchmark"
path = "benches/indicator_benchmark.rs"
harness = false

[dependencies.aligned-vec]
version = "0.6.4"

[dependencies.anyhow]
version = "1.0.98"

[dependencies.chrono]
version = "0.4.39"
features = ["std"]
default-features = false

[dependencies.csv]
version = "1.1"

[dependencies.cust]
version = "0.3.2"
optional = true

[dependencies.cust_derive]
version = "0.2.0"
optional = true

[dependencies.float-cmp]
version = "0.10.0"

[dependencies.itertools]
version = "0.14.0"

[dependencies.js-sys]
version = "0.3"
optional = true

[dependencies.libc]
version = "0.2.172"

[dependencies.lru]
version = "0.14.0"

[dependencies.ndarray]
version = "0.16.1"

[dependencies.num-traits]
version = "0.2.19"

[dependencies.numpy]
version = "0.25.0"
optional = true

[dependencies.once_cell]
version = "1.21.3"

[dependencies.paste]
version = "1.0.15"

[dependencies.pyo3]
version = "0.25.0"
features = ["extension-module"]
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde-wasm-bindgen]
version = "0.6"
optional = true

[dependencies.serde_json]
version = "1.0"

[dependencies.smallvec]
version = "1.15.1"

[dependencies.thiserror]
version = "2.0.9"

[dependencies.wasm-bindgen]
version = "0.2.95"
optional = true

[dev-dependencies.criterion]
version = "0.5.1"
features = ["html_reports"]

[dev-dependencies.proptest]
version = "1.7.0"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.ctor]
version = "0.4.2"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.rayon]
version = "1.10.0"

[target.'cfg(target_arch = "wasm32")'.dependencies.chrono]
version = "0.4.39"
features = ["wasmbind"]

[target.'cfg(target_arch = "wasm32")'.dependencies.getrandom]
version = "0.2"
features = ["js"]

[profile.bench]
opt-level = 3
lto = "fat"
codegen-units = 255
debug = 0
split-debuginfo = "unpacked"
overflow-checks = false
incremental = false
strip = "none"

[profile.bench.build-override]
codegen-units = 255

[profile.dev.build-override]
opt-level = 0
codegen-units = 16

[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 255
debug = 0
split-debuginfo = "unpacked"
overflow-checks = false
incremental = false
strip = "none"

[profile.release.build-override]
codegen-units = 255

[profile.wasm]
opt-level = "z"
lto = false
inherits = "release"
strip = "symbols"

[profile.wasm.build-override]
codegen-units = 1