4f70778255
Bump 1.1.4 -> 1.2.0 across all release files (Cargo, pyproject, wasm, conda, docs) and roll the CHANGELOG [Unreleased] section into [1.2.0]. Highlights: runtime CPU-feature dispatch (multiversion), broader wheel coverage (linux aarch64 + musllinux + windows arm64), abi3 wheels, Dynamic Time Warping, and indicator-specific exception types.
24 lines
469 B
TOML
24 lines
469 B
TOML
[package]
|
|
name = "ferro_ta_wasm"
|
|
version = "1.2.0"
|
|
edition = "2021"
|
|
description = "WebAssembly bindings for ferro-ta technical analysis indicators"
|
|
license = "MIT"
|
|
|
|
[workspace]
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
wasm-bindgen = "0.2"
|
|
js-sys = "0.3"
|
|
ferro_ta_core = { path = "../crates/ferro_ta_core", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
wasm-bindgen-test = "0.3"
|
|
|
|
[profile.release]
|
|
opt-level = "s" # optimise for size in WASM
|
|
lto = true
|