[package]
edition = "2024"
rust-version = "1.94.1"
name = "indicators-ta"
version = "0.1.2"
authors = ["nuniesmith"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Technical analysis indicators and market regime detection for algorithmic trading"
documentation = "https://docs.rs/indicators-ta"
readme = "README.md"
keywords = [
"trading",
"technical-analysis",
"indicators",
"finance",
"regime",
]
categories = [
"algorithms",
"mathematics",
"science",
]
license = "MIT"
repository = "https://github.com/nuniesmith/indicators-ta"
[lib]
name = "indicators"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.polars]
version = "0.53.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dev-dependencies.rand]
version = "0.10.0"
[lints.clippy]
cast_lossless = "allow"
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
doc_markdown = "allow"
float_cmp = "allow"
if_not_else = "allow"
manual_midpoint = "allow"
missing_const_for_fn = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
option_if_let_else = "allow"
struct_excessive_bools = "allow"
suboptimal_flops = "allow"
too_many_arguments = "allow"
too_many_lines = "allow"
use_self = "allow"
while_float = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "allow"
unsafe_code = "warn"
[profile.ci]
lto = false
codegen-units = 256
inherits = "release"
[profile.dev]
opt-level = 0
debug = 2
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 16
debug = 0
panic = "abort"
strip = true
[profile.release-with-debug]
debug = 2
inherits = "release"
strip = false