[package]
edition = "2021"
rust-version = "1.71"
name = "cdflib"
version = "0.4.1"
authors = ["Sebastiano Vigna <sebastiano.vigna@unimi.it>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust port of CDFLIB: cumulative distribution functions (CDF) associated with common probability distributions"
documentation = "https://docs.rs/cdflib"
readme = "README.md"
keywords = [
"statistics",
"distribution",
"cdf",
"quantile",
"numerics",
]
categories = [
"mathematics",
"science",
]
license = "MIT"
repository = "https://github.com/vigna/CDFLIB-rs"
[lib]
name = "cdflib"
path = "src/lib.rs"
[[test]]
name = "beta_and_discrete_round_trips"
path = "tests/beta_and_discrete_round_trips.rs"
[[test]]
name = "beta_distributions"
path = "tests/beta_distributions.rs"
[[test]]
name = "beta_routines"
path = "tests/beta_routines.rs"
[[test]]
name = "blocker_boundaries"
path = "tests/blocker_boundaries.rs"
[[test]]
name = "coverage_gaps"
path = "tests/coverage_gaps.rs"
[[test]]
name = "discrete_distributions"
path = "tests/discrete_distributions.rs"
[[test]]
name = "dispatchers"
path = "tests/dispatchers.rs"
[[test]]
name = "erf_normal_routines"
path = "tests/erf_normal_routines.rs"
[[test]]
name = "gamma_family_round_trips"
path = "tests/gamma_family_round_trips.rs"
[[test]]
name = "gamma_routines"
path = "tests/gamma_routines.rs"
[[test]]
name = "noncentral_distributions"
path = "tests/noncentral_distributions.rs"
[[test]]
name = "noncentral_smoke"
path = "tests/noncentral_smoke.rs"
[[test]]
name = "normal_distribution"
path = "tests/normal_distribution.rs"
[[test]]
name = "scaffolding"
path = "tests/scaffolding.rs"
[[test]]
name = "search_failure_bounds"
path = "tests/search_failure_bounds.rs"
[dependencies.thiserror]
version = "2"