moving_averages 0.1.0

Production-grade moving average algorithms implementation
Documentation
[[bench]]
harness = false
name = "benchmark"
path = "benches/benchmark.rs"

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

[dependencies.serde]
features = ["derive"]
optional = true
version = "1.0"

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

[dev-dependencies.float-cmp]
version = "0.9"

[features]
default = ["std"]
serde = ["dep:serde"]
std = []

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

[package]
authors = ["0ldm0s <oldmos@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "Production-grade moving average algorithms implementation"
documentation = "https://docs.rs/moving_averages"
edition = "2021"
license = "WTFPL"
name = "moving_averages"
readme = "README.md"
repository = "https://github.com/0ldm0s/moving_averages"
version = "0.1.0"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[profile.bench]
panic = "abort"

[profile.dev]
panic = "abort"

[profile.test]
panic = "abort"

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