correlation 0.1.0

A very simple crate that implements the calculation of correlation coefficients.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"