-
-
Notifications
You must be signed in to change notification settings - Fork 62
/
Cargo.toml
127 lines (112 loc) · 2.62 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
[package]
name = "faer"
version = "0.20.1"
edition = "2021"
authors = ["sarah <>"]
description = "Linear algebra routines"
readme = "README.md"
repository = "https://github.com/sarah-ek/faer-rs/"
license = "MIT"
keywords = ["math", "matrix", "linear-algebra"]
rust-version = "1.81.0"
[dependencies]
bytemuck = "1.14.3"
coe-rs = "0.1.2"
dbgf = "0.1.2"
paste = "1.0.14"
reborrow = "0.5.5"
dyn-stack = { version = "0.11.0", default-features = false }
equator = "0.4.1"
faer-entity = { version ="0.20.1", default-features = false, path = "./faer-entity" }
gemm = { version = "0.18.0", default-features = false }
nano-gemm = { version = "0.1.2", default-features = false }
num-complex = { version = "0.4.5", default-features = false }
num-traits = { version = "0.2.18", default-features = false }
matrixcompare-core = { version = "0.1.0", optional = true }
matrixcompare = { version = "0.3", optional = true }
rayon = { version = "1.8.1", optional = true }
serde = { version = "1", optional = true, features = ["derive"] }
log = { version = "0.4", optional = true, default-features = false }
npyz = { version = "0.8", optional = true }
rand = { version = "0.8.5", default-features = false, optional = true }
rand_distr = { version = "0.4.3", default-features = false, optional = true }
libm = "0.2.8"
generativity = "1.1.0"
[features]
default = [
"std",
"rayon",
"serde",
"rand",
"npy",
"linalg",
]
unstable = []
std = [
"faer-entity/std",
"gemm/std",
"nano-gemm/std",
"matrixcompare-core",
"matrixcompare",
"num-traits/std",
"num-complex/std",
]
rand = ["dep:rand", "rand_distr", "num-complex/rand"]
rayon = ["std", "gemm/rayon", "dep:rayon"]
nightly = [
"faer-entity/nightly",
"gemm/nightly",
"nano-gemm/nightly",
]
perf-warn = ["log"]
serde = ["dep:serde"]
npy = ["std", "dep:npyz"]
linalg = [
"cholesky",
"qr",
"lu",
"svd",
"evd",
"sparse",
]
cholesky = []
qr = []
lu = []
evd = ["qr"]
svd = ["qr"]
sparse = []
[dev-dependencies]
aligned-vec = "0.6.0"
amd = "0.2.2"
assert_approx_eq = "1.1.0"
core_affinity = "0.8.1"
csv = "1.3.0"
diol = { version = "0.8.3", default-features = false }
matrix-market-rs = "0.1.3"
matrixcompare = "0.3.0"
nalgebra = "0.32.5"
num_cpus = "1.16.0"
rand = "0.8.5"
rand_distr = "0.4.3"
serde_json = "1.0.116"
serde_test = "1.0.176"
[profile.dev]
opt-level = 3
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs", "--html-in-header", "katex-header.html"]
[[bench]]
name = "cholesky"
harness = false
[[bench]]
name = "qr"
harness = false
[[bench]]
name = "meanvar"
harness = false
[[bench]]
name = "bench"
harness = false
[[bench]]
name = "bench_aggregate"
harness = false