# 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" rust-version = "1.65" name = "petal-decomposition" version = "0.8.0" authors = ["Min Kim "] build = "build.rs" exclude = ["./github"] autobins = false autoexamples = false autotests = false autobenches = false description = """ Matrix decomposition algorithms including PCA (principal component analysis) and ICA (independent component analysis)""" homepage = "https://github.com/petabi/petal-decomposition" documentation = "https://docs.rs/petal-decomposition" readme = "README.md" keywords = [ "matrix", "decomposition", "pca", "ica", "dimensionality", ] categories = [ "mathematics", "science", "algorithms", ] license = "Apache-2.0" repository = "https://github.com/petabi/petal-decomposition" [package.metadata.docs.rs] no-default-features = true [lib] name = "petal_decomposition" path = "src/lib.rs" [dependencies.intel-mkl-src] version = "0.8.1" optional = true default-features = false [dependencies.itertools] version = "0.13" [dependencies.lair] version = "0.7" [dependencies.lapack] version = "0.19" [dependencies.ndarray] version = "0.16.1" [dependencies.netlib-src] version = "0.8" features = ["cblas"] optional = true default-features = false [dependencies.num-complex] version = "0.4" [dependencies.num-traits] version = "0.2.15" [dependencies.openblas-src] version = "0.10.4" features = ["cblas"] optional = true default-features = false [dependencies.rand] version = "0.8" [dependencies.rand_distr] version = "0.4" [dependencies.rand_pcg] version = "0.3" [dependencies.serde] version = "1" features = ["derive"] optional = true [dependencies.thiserror] version = "1" [dev-dependencies.approx] version = "0.5" [dev-dependencies.ndarray] version = "0.16" features = ["approx"] [dev-dependencies.serde_json] version = "1" [features] default = [] intel-mkl = ["intel-mkl-static"] intel-mkl-static = ["intel-mkl-src/mkl-static-lp64-seq"] intel-mkl-system = ["intel-mkl-src/mkl-dynamic-lp64-seq"] netlib = ["netlib-static"] netlib-static = ["netlib-src/static"] netlib-system = ["netlib-src/system"] openblas = ["openblas-static"] openblas-static = ["openblas-src/static"] openblas-system = ["openblas-src/system"] serialization = [ "serde", "lair/serialization", "ndarray/serde", "rand/serde1", "rand_pcg/serde1", ] [badges.codecov] repository = "petabi/petal-decomposition" service = "github" [lints.clippy] pedantic = "warn"