[package]
edition = "2021"
rust-version = "1.75"
name = "wickra-core"
version = "0.1.3"
authors = ["Wickra Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core streaming-first technical indicators engine for the Wickra library"
homepage = "https://github.com/kingchenc/wickra"
readme = "README.md"
keywords = [
"finance",
"trading",
"indicators",
"technical-analysis",
"ta",
]
categories = [
"finance",
"mathematics",
"science",
]
license = "PolyForm-Noncommercial-1.0.0"
repository = "https://github.com/kingchenc/wickra"
[features]
default = ["parallel"]
parallel = ["dep:rayon"]
[lib]
name = "wickra_core"
path = "src/lib.rs"
[dependencies.rayon]
version = "1.10"
optional = true
[dependencies.thiserror]
version = "2"
[dev-dependencies.approx]
version = "0.5"
[dev-dependencies.proptest]
version = "1.5"
[lints.clippy]
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
float_cmp = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
similar_names = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
unreachable_pub = "warn"
unsafe_code = "forbid"
unused_must_use = "deny"