[package]
name = "commonstats"
version = "0.1.0"
edition = "2024"
rust-version = "1.95"
license = "MIT OR Apache-2.0"
description = "WASM-first Rust statistics: descriptives, hypothesis tests, distributions, density estimation, transforms, and resampling — validated against SciPy/R."
repository = "https://github.com/pawlenartowicz/faststats"
homepage = "https://github.com/pawlenartowicz/faststats"
documentation = "https://docs.rs/commonstats"
readme = "README.md"
authors = ["Paweł Lenartowicz"]
keywords = ["statistics", "stats", "wasm", "distributions", "hypothesis-testing"]
categories = ["mathematics", "science", "wasm"]
[dependencies]
libm = "0.2"
[dev-dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
[features]
default = []
rng = []
resample = ["rng"]
dist = []
rand-interop = []
[lib]
name = "commonstats"
[lints.clippy]
all = { level = "deny", priority = -1 }