forked from sarah-quinones/faer-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
83 lines (72 loc) · 2.3 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
[package]
name = "faer"
version = "0.18.2"
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.67.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.10.0", default-features = false }
equator = "0.1.10"
faer-entity = { version ="0.18.0", default-features = false, path = "./faer-entity" }
gemm = { version = "0.17.1", 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"
[features]
default = ["std", "rayon", "serde", "rand", "npy"]
std = [
"faer-entity/std",
"gemm/std",
"matrixcompare-core",
"matrixcompare",
"num-traits/std",
"num-complex/std",
]
rand = ["dep:rand", "rand_distr"]
rayon = ["std", "gemm/rayon", "dep:rayon"]
nightly = ["faer-entity/nightly", "gemm/nightly"]
perf-warn = ["log"]
serde = ["dep:serde"]
npy = ["std", "dep:npyz"]
[dev-dependencies]
amd = "0.2.2"
assert_approx_eq = "1.1.0"
diol = { version = "0.6.1" }
matrix-market-rs = "0.1.3"
matrixcompare = "0.3.0"
nalgebra = "0.32.5"
blas-src = { version = "0.8", features = ["openblas"] }
ndarray = { version = "0.15.6", features = ["blas"] }
ndarray-linalg = { version = "0.16.0", features = ["openblas-system"], git = "https://github.com/mike-kfed/ndarray-linalg.git", branch="arm-cross-compile"}
rand = "0.8.5"
rand_distr = "0.4.3"
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 = "meanvar"
harness = false
[[bench]]
name = "bench"
harness = false