Files
rustytorch/crates/specialized/rtx-neuro-stats/Cargo.toml
T
2026-03-04 00:08:42 +00:00

28 lines
650 B
TOML

[package]
name = "rtx-neuro-stats"
version = "0.1.0"
edition = "2024"
description = "Statistical analysis for neuroimaging data - permutation tests, cluster-based corrections, FDR"
license = "MIT OR Apache-2.0"
repository = "https://github.com/osobh/rustytorch"
keywords = ["neuroscience", "statistics", "permutation-test", "fdr", "cluster"]
categories = ["science", "mathematics"]
[dependencies]
rtx-neuro = { path = "../rtx-neuro" }
rand = "0.8"
rayon = "1.8"
thiserror = "2.0"
ndarray = { version = "0.16", features = ["rayon"] }
statrs = "0.18"
[dev-dependencies]
approx = "0.5"
[features]
default = []
parallel = []
[lints]
workspace = true