[package]
edition = "2021"
name = "lapl"
version = "0.2.0"
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",
]
petgraph = ["dep:petgraph"]
sparse = []
[lib]
name = "lapl"
path = "src/lib.rs"
[[example]]
name = "spectral_rmt"
path = "examples/spectral_rmt.rs"
[[test]]
name = "rosetta_lapl"
path = "tests/rosetta_lapl.rs"
[[test]]
name = "spectral_oracle"
path = "tests/spectral_oracle.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.petgraph]
version = "0.6"
optional = true
[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"
[dev-dependencies.rmt]
version = "0.1.3"
[dev-dependencies.serde]
version = "1.0"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1.0"