-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathCargo.toml
88 lines (69 loc) · 1.74 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 = "ndarray-linalg"
version = "0.13.1"
authors = ["Toshiki Teramura <[email protected]>"]
edition = "2018"
description = "Linear algebra package for rust-ndarray using LAPACK"
documentation = "https://docs.rs/ndarray-linalg/"
repository = "https://github.com/rust-ndarray/ndarray-linalg"
keywords = ["ndarray", "lapack", "matrix"]
license = "MIT OR Apache-2.0"
readme = "../README.md"
categories = ["algorithms", "science"]
[features]
default = []
netlib = ["lax/netlib"]
openblas = ["lax/openblas"]
intel-mkl = ["lax/intel-mkl"]
netlib-static = ["lax/netlib-static"]
netlib-system = ["lax/netlib-system"]
openblas-static = ["lax/openblas-static"]
openblas-system = ["lax/openblas-system"]
intel-mkl-static = ["lax/intel-mkl-static"]
intel-mkl-system = ["lax/intel-mkl-system"]
[dependencies]
cauchy = "0.4.0"
num-complex = "0.4.0"
num-traits = "0.2.14"
rand = "0.8.3"
thiserror = "1.0.24"
[dependencies.ndarray]
version = "0.15.1"
features = ["blas", "approx", "std"]
default-features = false
[dependencies.lax]
version = "0.1.0"
path = "../lax"
default-features = false
[dev-dependencies]
paste = "1.0.5"
criterion = "0.3.4"
# Keep the same version as ndarray's dependency!
approx = { version = "0.4", features = ["num-complex"] }
rand_xoshiro = "0.6"
ndarray-rand = "0.14"
[[bench]]
name = "truncated_eig"
harness = false
[[bench]]
name = "eig"
harness = false
[[bench]]
name = "eigh"
harness = false
[[bench]]
name = "qr"
harness = false
[[bench]]
name = "svd"
harness = false
[[bench]]
name = "solve"
harness = false
[[bench]]
name = "solveh"
harness = false
[package.metadata.docs.rs]
rustdoc-args = ["--html-in-header", "katex-header.html"]
[package.metadata.release]
no-dev-version = true