682bf063ca
Prepare the first patch release after v1.0.0 by finalizing the outstanding release, packaging, and workflow fixes. This release keeps PyPI and crates.io publishing anchored to CI.yml, splits the large CI workflow into focused rust/python/wasm/docs suites, fixes the ci-complete gate, and updates the release SBOM action pin. It also switches the npm publish workflow to GitHub OIDC, installs the wasm32 target required for packaging, ensures the WASM npm tarball includes pkg/ artifacts during prepack, and adds a dedicated README plus docs.rs metadata for ferro_ta_core. Finally, bump all published package versions to 1.0.1 and record the patch release notes in CHANGELOG.md.
38 lines
744 B
TOML
38 lines
744 B
TOML
[workspace]
|
|
members = [".", "crates/ferro_ta_core"]
|
|
exclude = ["fuzz"]
|
|
resolver = "2"
|
|
|
|
[package]
|
|
name = "ferro_ta"
|
|
version = "1.0.1"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "ferro_ta"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
pyo3 = { version = "0.25", features = ["extension-module"] }
|
|
ta = "0.5.0"
|
|
numpy = "0.25"
|
|
# Must be < 0.17 while numpy 0.25 is used (numpy's IntoPyArray is for its own ndarray only).
|
|
ndarray = "0.16"
|
|
rayon = "1.10"
|
|
log = "0.4"
|
|
pyo3-log = "0.12"
|
|
ferro_ta_core = { path = "crates/ferro_ta_core", version = "1.0.1" }
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.8", features = ["html_reports"] }
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
|
|
[features]
|
|
default = []
|
|
simd = ["ferro_ta_core/simd"]
|