lapl 0.1.1

Spectral methods: graph Laplacian, eigenmaps, spectral clustering
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 = "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"