[package]
edition = "2024"
rust-version = "1.90"
name = "rangebar-hurst"
version = "12.32.2"
authors = ["Terry Li <terry@eonlabs.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Hurst Exponent estimator functions for range bar financial analysis"
homepage = "https://github.com/terrylica/rangebar"
readme = false
keywords = [
"finance",
"hurst",
"exponent",
"time-series",
"analysis",
]
categories = [
"algorithms",
"mathematics",
]
license = "MIT"
repository = "https://github.com/terrylica/rangebar"
resolver = "2"
[lib]
name = "rangebar_hurst"
path = "src/lib.rs"
[dependencies.linreg]
version = "0.2.0"
[lints.clippy]
assigning_clones = "allow"
bool_to_int_with_if = "allow"
cast_lossless = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
cloned_instead_of_copied = "allow"
collapsible_if = "allow"
doc_link_with_quotes = "allow"
doc_markdown = "allow"
if_not_else = "allow"
items_after_statements = "allow"
manual_clamp = "allow"
manual_range_contains = "allow"
map_unwrap_or = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
return_self_not_must_use = "allow"
significant_drop_tightening = "allow"
similar_names = "allow"
single_match_else = "allow"
struct_excessive_bools = "allow"
too_many_lines = "allow"
trivially_copy_pass_by_ref = "allow"
uninlined_format_args = "allow"
unnecessary_wraps = "allow"
unused_self = "allow"
upper_case_acronyms = "allow"
use_self = "allow"
useless_conversion = "allow"
wildcard_imports = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1