[package]
edition = "2021"
rust-version = "1.75"
name = "wickra"
version = "0.1.4"
authors = ["Wickra Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Streaming-first technical analysis library: incremental indicators, drop-in TA-Lib replacement, multi-language."
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 = ["wickra-core/parallel"]
[lib]
name = "wickra"
path = "src/lib.rs"
[[example]]
name = "backtest"
path = "examples/backtest.rs"
[[bench]]
name = "indicators"
path = "benches/indicators.rs"
harness = false
[dependencies.wickra-core]
version = "0.1.4"
[dev-dependencies.approx]
version = "0.5"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[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"