2017-08-03 01:38:28 +08:00
|
|
|
[package]
|
|
|
|
name = "nalgebra-lapack"
|
2023-01-15 00:04:22 +08:00
|
|
|
version = "0.24.0"
|
2017-08-04 00:57:40 +08:00
|
|
|
authors = [ "Sébastien Crozet <developer@crozet.re>", "Andrew Straw <strawman@astraw.com>" ]
|
2017-08-03 01:38:28 +08:00
|
|
|
|
2021-01-29 20:33:37 +08:00
|
|
|
description = "Matrix decompositions using nalgebra matrices and Lapack bindings."
|
|
|
|
documentation = "https://www.nalgebra.org/docs"
|
|
|
|
homepage = "https://nalgebra.org"
|
|
|
|
repository = "https://github.com/dimforge/nalgebra"
|
|
|
|
readme = "../README.md"
|
|
|
|
categories = [ "science", "mathematics" ]
|
2021-03-01 21:48:59 +08:00
|
|
|
keywords = [ "linear", "algebra", "matrix", "vector", "lapack" ]
|
2021-01-29 20:33:37 +08:00
|
|
|
license = "BSD-3-Clause"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[badges]
|
|
|
|
maintenance = { status = "actively-developed" }
|
2017-08-03 01:38:28 +08:00
|
|
|
|
|
|
|
[features]
|
2021-04-12 18:14:16 +08:00
|
|
|
serde-serialize = [ "serde", "nalgebra/serde-serialize" ]
|
2021-03-01 01:39:18 +08:00
|
|
|
proptest-support = [ "nalgebra/proptest-support" ]
|
2021-04-12 18:14:16 +08:00
|
|
|
arbitrary = [ "nalgebra/arbitrary" ]
|
2017-08-03 01:38:28 +08:00
|
|
|
|
|
|
|
# For BLAS/LAPACK
|
2022-10-31 00:22:46 +08:00
|
|
|
default = ["netlib"]
|
2018-05-25 05:51:57 +08:00
|
|
|
openblas = ["lapack-src/openblas"]
|
|
|
|
netlib = ["lapack-src/netlib"]
|
|
|
|
accelerate = ["lapack-src/accelerate"]
|
|
|
|
intel-mkl = ["lapack-src/intel-mkl"]
|
2017-08-03 01:38:28 +08:00
|
|
|
|
|
|
|
[dependencies]
|
2023-01-15 00:04:22 +08:00
|
|
|
nalgebra = { version = "0.32", path = ".." }
|
2018-05-25 05:51:57 +08:00
|
|
|
num-traits = "0.2"
|
2021-06-02 20:53:43 +08:00
|
|
|
num-complex = { version = "0.4", default-features = false }
|
2023-01-15 00:04:22 +08:00
|
|
|
simba = "0.8"
|
2021-04-12 18:14:16 +08:00
|
|
|
serde = { version = "1.0", features = [ "derive" ], optional = true }
|
2021-06-02 20:53:43 +08:00
|
|
|
lapack = { version = "0.19", default-features = false }
|
|
|
|
lapack-src = { version = "0.8", default-features = false }
|
2017-08-03 01:38:28 +08:00
|
|
|
# clippy = "*"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-01-15 00:04:22 +08:00
|
|
|
nalgebra = { version = "0.32", features = [ "arbitrary", "rand" ], path = ".." }
|
2021-04-12 16:34:44 +08:00
|
|
|
proptest = { version = "1", default-features = false, features = ["std"] }
|
2021-03-01 00:52:14 +08:00
|
|
|
quickcheck = "1"
|
2021-06-02 20:53:43 +08:00
|
|
|
approx = "0.5"
|
2021-03-01 00:52:14 +08:00
|
|
|
rand = "0.8"
|
2022-10-24 02:36:06 +08:00
|
|
|
|