[package]
edition = "2024"
name = "correlation"
version = "0.1.0"
authors = ["Mathieu Roget <mathieu.roget@ens-lyon.org>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A very simple crate that implements the calculation of correlation coefficients."
homepage = "https://github.com/mroget/correlation"
readme = "README.md"
keywords = [
"math",
"correlation",
"pearson",
"spearman",
"kendall",
]
license = "MIT"
repository = "https://github.com/mroget/correlation"
[lib]
name = "correlation"
path = "src/lib.rs"
[[bin]]
name = "correlation"
path = "src/main.rs"
[[test]]
name = "automated"
path = "tests/automated.rs"
[[test]]
name = "simple"
path = "tests/simple.rs"
[[bench]]
name = "benches"
path = "benches/benches.rs"
harness = false
[dependencies]
[dev-dependencies.criterion]
version = "0.3"