[package]
edition = "2021"
rust-version = "1.85"
name = "procrustes"
version = "0.1.1"
authors = ["Paweł Lenartowicz"]
build = false
exclude = ["PUBLICATION_SPEC.md"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Orthogonal Procrustes and signed-permutation alignment via faer"
readme = "README.md"
keywords = [
"procrustes",
"alignment",
"linear-algebra",
"shape-analysis",
"faer",
]
categories = [
"science",
"algorithms",
"mathematics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/pawlenartowicz/procrustes"
[lib]
name = "procrustes"
path = "src/lib.rs"
[[example]]
name = "align_random"
path = "examples/align_random.rs"
[[example]]
name = "bench_runner"
path = "examples/bench_runner.rs"
[[test]]
name = "bit_parity"
path = "tests/bit_parity.rs"
[[test]]
name = "gpa"
path = "tests/gpa.rs"
[[test]]
name = "gpa_parity"
path = "tests/gpa_parity.rs"
[[test]]
name = "rotation_only"
path = "tests/rotation_only.rs"
[[test]]
name = "scipy_parity"
path = "tests/scipy_parity.rs"
[[test]]
name = "sign_align"
path = "tests/sign_align.rs"
[[bench]]
name = "alignment"
path = "benches/alignment.rs"
harness = false
[dependencies.faer]
version = "0.24"
[dependencies.thiserror]
version = "1"
[dev-dependencies.criterion]
version = "0.5"
default-features = false
[dev-dependencies.rand]
version = "0.8"
[dev-dependencies.rand_chacha]
version = "0.3"
[lints.clippy]
all = "deny"
pedantic = "warn"
[lints.rust]
missing_docs = "deny"
unsafe_code = "forbid"