2026-05-21 17:50:45 +02:00
|
|
|
[package]
|
|
|
|
|
name = "wickra-core"
|
|
|
|
|
description = "Core streaming-first technical indicators engine for the Wickra library"
|
|
|
|
|
version.workspace = true
|
|
|
|
|
authors.workspace = true
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
rust-version.workspace = true
|
2026-06-03 18:49:39 +02:00
|
|
|
license.workspace = true
|
2026-05-21 17:50:45 +02:00
|
|
|
repository.workspace = true
|
|
|
|
|
homepage.workspace = true
|
|
|
|
|
readme.workspace = true
|
|
|
|
|
keywords.workspace = true
|
|
|
|
|
categories.workspace = true
|
2026-05-22 16:20:43 +02:00
|
|
|
documentation = "https://docs.rs/wickra-core"
|
|
|
|
|
|
|
|
|
|
# Render the docs on docs.rs with every feature enabled so the parallel
|
|
|
|
|
# (rayon-backed) batch APIs are documented.
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
|
all-features = true
|
2026-05-21 17:50:45 +02:00
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
|
workspace = true
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
thiserror = { workspace = true }
|
|
|
|
|
rayon = { workspace = true, optional = true }
|
|
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
default = ["parallel"]
|
|
|
|
|
parallel = ["dep:rayon"]
|
|
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
approx = { workspace = true }
|
|
|
|
|
proptest = { workspace = true }
|