high-roller 0.4.0

Rolling maximum, minimum, and sum for streams of numerical data.
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 = "2021"
rust-version = "1.82"
name = "high-roller"
version = "0.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rolling maximum, minimum, and sum for streams of numerical data."
documentation = "https://docs.rs/high-roller"
readme = "README.md"
keywords = [
    "no_std",
    "rolling",
    "sliding-window",
    "streaming",
    "telemetry",
]
categories = [
    "no-std",
    "algorithms",
    "data-structures",
    "embedded",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/cfzimmerman/high-roller"

[lib]
name = "high_roller"
path = "src/lib.rs"

[[bench]]
name = "rolling_max"
path = "benches/rolling_max.rs"

[dependencies.arraydeque]
version = "0.5.1"
default-features = false

[dependencies.num-traits]
version = "0.2.19"

[dependencies.thiserror]
version = "2.0.18"
default-features = false

[dev-dependencies.criterion]
version = "0.7.0"

[dev-dependencies.decimal]
version = "2.1.0"

[dev-dependencies.num-bigint]
version = "0.4.3"
default-features = false

[dev-dependencies.rand]
version = "0.10.0"

[lints.clippy]
arithmetic_side_effects = "warn"
as_ptr_cast_mut = "warn"
cast_lossless = "warn"
checked_conversions = "warn"
cloned_instead_of_copied = "warn"
derive_partial_eq_without_eq = "warn"
exhaustive_enums = "warn"
exhaustive_structs = "warn"
expect_used = "warn"
implicit_clone = "warn"
indexing_slicing = "warn"
inefficient_to_string = "warn"
integer_division = "warn"
manual_let_else = "warn"
match_wildcard_for_single_variants = "warn"
missing_errors_doc = "warn"
missing_panics_doc = "warn"
must_use_candidate = "warn"
panic = "warn"
ptr_as_ptr = "warn"
redundant_closure_for_method_calls = "warn"
return_self_not_must_use = "warn"
semicolon_if_nothing_returned = "warn"
todo = "warn"
unimplemented = "warn"
unnested_or_patterns = "warn"
unwrap_used = "warn"
use_self = "warn"
wildcard_in_or_patterns = "warn"