[package]
edition = "2021"
name = "lapl"
version = "0.1.1"
authors = ["Arc <attobop@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Spectral methods: graph Laplacian, eigenmaps, spectral clustering"
homepage = "https://github.com/arclabs561/lapl"
documentation = "https://docs.rs/lapl"
readme = "README.md"
keywords = [
"spectral",
"laplacian",
"eigenmap",
"clustering",
"graph",
]
categories = [
"algorithms",
"science",
"mathematics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/arclabs561/lapl"
[features]
default = []
faer = ["dep:faer"]
parallel = [
"dep:rayon",
"ndarray/rayon",
]
sparse = []
[lib]
name = "lapl"
path = "src/lib.rs"
[[bench]]
name = "spectral_scaling"
path = "benches/spectral_scaling.rs"
harness = false
[dependencies.faer]
version = "0.23.2"
optional = true
[dependencies.ndarray]
version = "0.16"
features = ["approx"]
[dependencies.rayon]
version = "1.10"
optional = true
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.proptest]
version = "1.5"