[package]
edition = "2024"
name = "single-statistics"
version = "0.9.0"
authors = ["Ian F. Diks"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A specialized Rust library for statistical analysis of single-cell data, part of the single-rust ecosystem."
homepage = "https://singlerust.com"
readme = "README.md"
license-file = "LICENSE.md"
repository = "https://github.com/SingleRust/single-statistics"
[features]
enrichment = []
[lib]
name = "single_statistics"
path = "src/lib.rs"
[[test]]
name = "agnostic_tests"
path = "tests/agnostic_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "unit_tests"
path = "tests/unit_tests.rs"
[dependencies.anyhow]
version = "1.0.98"
[dependencies.indicatif]
version = "0.18.2"
features = ["rayon"]
[dependencies.nalgebra-sparse]
version = "0.11.0"
[dependencies.ndarray]
version = "0.16.1"
features = ["rayon"]
[dependencies.num-traits]
version = "0.2.19"
[dependencies.rayon]
version = "1.10.0"
[dependencies.single-utilities]
version = "0.8.7"
[dependencies.statrs]
version = "0.18.0"
[dev-dependencies.approx]
version = "0.5.1"