[package]
edition = "2021"
rust-version = "1.85"
name = "plskit"
version = "0.1.0"
authors = ["Paweł Lenartowicz"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "PLS regression with modern inference. Rust implementation; the same engine drives the Python, R, and Julia wrappers."
readme = "README.md"
license = "GPL-3.0-or-later"
repository = "https://github.com/pawlenartowicz/plskit"
[lib]
name = "plskit"
path = "src/lib.rs"
[[test]]
name = "byte_parity"
path = "tests/byte_parity.rs"
[[test]]
name = "corpus"
path = "tests/corpus.rs"
[[test]]
name = "coverage_mc"
path = "tests/coverage_mc.rs"
[[test]]
name = "preprocess_basic"
path = "tests/preprocess_basic.rs"
[[test]]
name = "rotate_ssd_parity"
path = "tests/rotate_ssd_parity.rs"
[[test]]
name = "weights_fit_basic"
path = "tests/weights_fit_basic.rs"
[[test]]
name = "weights_integer_replication_parity"
path = "tests/weights_integer_replication_parity.rs"
[[test]]
name = "weights_n_eff_kish"
path = "tests/weights_n_eff_kish.rs"
[[test]]
name = "weights_row_scaling_identity"
path = "tests/weights_row_scaling_identity.rs"
[[test]]
name = "weights_uniform_invariance"
path = "tests/weights_uniform_invariance.rs"
[dependencies.faer]
version = "0.24"
[dependencies.getrandom]
version = "0.4"
[dependencies.procrustes]
version = "0.1.0"
[dependencies.rand]
version = "0.10"
[dependencies.rand_chacha]
version = "0.10"
[dependencies.rayon]
version = "1.8"
[dependencies.thiserror]
version = "2"
[dev-dependencies.approx]
version = "0.5"
[dev-dependencies.ndarray]
version = "0.17"
[dev-dependencies.ndarray-npy]
version = "0.10"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.serde_json]
version = "1"
[lints.clippy]
all = "deny"
pedantic = "warn"
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"