[package]
edition = "2024"
name = "quantwave-core"
version = "0.7.0"
authors = ["Mayank Lavania"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-performance, Polars-native technical analysis library for Rust."
homepage = "https://github.com/lavs9/quantwave"
documentation = "https://docs.rs/quantwave-core"
readme = "README.md"
keywords = [
"trading",
"technical-analysis",
"polars",
"finance",
]
categories = [
"science",
"mathematics",
]
license = "MIT"
repository = "https://github.com/lavs9/quantwave"
resolver = "2"
[features]
default = []
test_utils = []
[lib]
name = "quantwave_core"
path = "src/lib.rs"
[[bin]]
name = "bench_complex"
path = "src/bin/bench_complex.rs"
[[bin]]
name = "bench_ema"
path = "src/bin/bench_ema.rs"
[[bin]]
name = "bench_rust"
path = "src/bin/bench_rust.rs"
[[bin]]
name = "bench_sma"
path = "src/bin/bench_sma.rs"
[[bin]]
name = "benchmark"
path = "src/bin/benchmark.rs"
[[bin]]
name = "benchmark_export"
path = "src/bin/benchmark_export.rs"
[[bin]]
name = "export_metadata"
path = "src/bin/export_metadata.rs"
[[bin]]
name = "gen_gold_griffiths"
path = "src/bin/gen_gold_griffiths.rs"
[[test]]
name = "hmm_forecast_gold"
path = "tests/hmm_forecast_gold.rs"
[[test]]
name = "hmm_gaussian_gold"
path = "tests/hmm_gaussian_gold.rs"
[[test]]
name = "hmm_gaussian_parity"
path = "tests/hmm_gaussian_parity.rs"
[[test]]
name = "hmm_lambda_gold"
path = "tests/hmm_lambda_gold.rs"
[[test]]
name = "test_all_talib_parity"
path = "tests/test_all_talib_parity.rs"
[[test]]
name = "test_missing_talib_parity"
path = "tests/test_missing_talib_parity.rs"
[[test]]
name = "test_ml_feature_validation"
path = "tests/test_ml_feature_validation.rs"
[[test]]
name = "test_wrapper"
path = "tests/test_wrapper.rs"
[[bench]]
name = "indicator_throughput"
path = "benches/indicator_throughput.rs"
harness = false
[dependencies.approx]
version = "0.5"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.log]
version = "0.4"
[dependencies.nalgebra]
version = "0.33"
features = ["serde-serialize"]
[dependencies.rand]
version = "0.8"
optional = true
[dependencies.rustfft]
version = "6"
optional = true
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.statrs]
version = "0.18"
[dependencies.talib-rs]
version = "0.1"
[dependencies.thiserror]
version = "1.0"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.proptest]
version = "1.0"
[dev-dependencies.rand]
version = "0.8"
[dev-dependencies.serde]
version = "1.0"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1.0"
[lints.clippy]
approx_constant = "allow"
excessive_precision = "allow"
expect_used = "warn"
items_after_test_module = "allow"
needless_range_loop = "allow"
panic = "deny"
type_complexity = "allow"
unwrap_used = "warn"
upper_case_acronyms = "allow"
[lints.rust]
unsafe_code = "forbid"