[package]
edition = "2024"
name = "numeric-statistics"
version = "0.3.2"
authors = ["Joel Parker Henderson <joel@joelparkerhenderson.com>"]
build = false
include = [
"src/**/*",
"LICENSE.md",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Numeric Statistics: functions for min, max, average, variance, standard deviation, and more to come."
readme = "README.md"
keywords = [
"math",
"stats",
"stddev",
]
categories = [
"mathematics",
"algorithms",
"data-structures",
"visualization",
]
license = "MIT OR Apache-2.0 OR GPL-2.0 OR GPL-3.0 OR BSD-3-Clause"
repository = "https://github.com/numcommand/numeric-statistics-rust-crate/"
[lib]
name = "numeric_statistics"
path = "src/lib.rs"
[profile.dev]
panic = "unwind"
[profile.dist]
debug = 2
split-debuginfo = "packed"
inherits = "release"
[profile.release]
panic = "unwind"