-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
88 lines (73 loc) · 2 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[package]
name = "petal-decomposition"
version = "0.8.0"
description = """
Matrix decomposition algorithms including PCA (principal component analysis)
and ICA (independent component analysis)"""
documentation = "https://docs.rs/petal-decomposition"
readme = "README.md"
homepage = "https://github.com/petabi/petal-decomposition"
repository = "https://github.com/petabi/petal-decomposition"
license = "Apache-2.0"
keywords = ["matrix", "decomposition", "pca", "ica", "dimensionality"]
categories = ["mathematics", "science", "algorithms"]
authors = ["Min Kim <msk@dolbo.net>"]
edition = "2021"
rust-version = "1.71.1"
exclude = ["./github"]
[badges]
codecov = { repository = "petabi/petal-decomposition", service = "github" }
[lints.clippy]
pedantic = "warn"
[package.metadata.docs.rs]
no-default-features = true
[features]
default = []
intel-mkl = ["intel-mkl-static"]
netlib = ["netlib-static"]
openblas = ["openblas-static"]
intel-mkl-static = ["intel-mkl-src/mkl-static-lp64-seq"]
intel-mkl-system = ["intel-mkl-src/mkl-dynamic-lp64-seq"]
netlib-static = ["netlib-src/static"]
netlib-system = ["netlib-src/system"]
openblas-static = ["openblas-src/static"]
openblas-system = ["openblas-src/system"]
serialization = [
"serde",
"lair/serialization",
"ndarray/serde",
"rand/serde1",
"rand_pcg/serde1",
]
[dependencies]
itertools = "0.14"
lair = "0.7"
lapack = "0.19"
ndarray = "0.16.1"
num-complex = "0.4"
num-traits = "0.2.15"
rand = "0.8"
rand_distr = "0.4"
rand_pcg = "0.3"
serde = { version = "1", features = ["derive"], optional = true }
thiserror = "2"
[dependencies.intel-mkl-src]
version = "0.8.1"
default-features = false
optional = true
[dependencies.netlib-src]
version = "0.8"
default-features = false
features = ["cblas"]
optional = true
[dependencies.openblas-src]
version = "0.10.4"
default-features = false
features = ["cblas"]
optional = true
[dev-dependencies]
approx = "0.5"
ndarray = { version = "0.16", features = ["approx"] }
serde_json = "1"
[packages.metadata.docs.rs]
features = ["serialization"]