[package]
edition = "2024"
rust-version = "1.85"
name = "hypors"
version = "0.4.1"
authors = ["Shubhankar Agrawal <shubhankar.a31@gmail.com>"]
build = false
exclude = [
".github",
"python",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Hypothesis Testing with Rust"
readme = "README.md"
keywords = [
"statistics",
"hypothesis",
"testing",
"data",
"p-value",
]
license-file = "LICENSE"
repository = "https://github.com/astronights/hypors"
[lib]
name = "hypors"
crate-type = ["lib"]
path = "src/lib.rs"
[[test]]
name = "anova"
path = "tests/anova.rs"
[[test]]
name = "chi_square"
path = "tests/chi_square.rs"
[[test]]
name = "common"
path = "tests/common.rs"
[[test]]
name = "mann_whitney"
path = "tests/mann_whitney.rs"
[[test]]
name = "proportion"
path = "tests/proportion.rs"
[[test]]
name = "t"
path = "tests/t.rs"
[[test]]
name = "z"
path = "tests/z.rs"
[dependencies.serde]
version = ">=1.0.210"
features = ["derive"]
[dependencies.statrs]
version = ">=0.17.1"