indicators-ta 0.1.3

Technical analysis indicators and market regime detection for algorithmic trading
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.94.1"
name = "indicators-ta"
version = "0.1.3"
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"

[[test]]
name = "macd_atr_stc"
path = "tests/macd_atr_stc.rs"

[[test]]
name = "moving_averages"
path = "tests/moving_averages.rs"

[[test]]
name = "trend_indicators"
path = "tests/trend_indicators.rs"

[[test]]
name = "volume_indicators"
path = "tests/volume_indicators.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