2017-08-03 01:38:28 +08:00
|
|
|
[package]
|
|
|
|
name = "nalgebra-lapack"
|
2020-12-30 22:07:13 +08:00
|
|
|
version = "0.15.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
|
|
|
|
|
|
|
description = "Linear algebra library with transformations and satically-sized or dynamically-sized matrices."
|
2019-06-12 02:56:50 +08:00
|
|
|
documentation = "https://nalgebra.org/doc/nalgebra/index.html"
|
|
|
|
homepage = "https://nalgebra.org"
|
2018-09-15 12:29:53 +08:00
|
|
|
repository = "https://github.com/rustsim/nalgebra"
|
2017-08-03 01:38:28 +08:00
|
|
|
readme = "README.md"
|
|
|
|
keywords = [ "linear", "algebra", "matrix", "vector" ]
|
|
|
|
license = "BSD-3-Clause"
|
2019-03-23 21:29:07 +08:00
|
|
|
edition = "2018"
|
2017-08-03 01:38:28 +08:00
|
|
|
|
|
|
|
[features]
|
|
|
|
serde-serialize = [ "serde", "serde_derive" ]
|
|
|
|
|
|
|
|
# For BLAS/LAPACK
|
2019-03-31 17:11:21 +08:00
|
|
|
default = ["openblas"]
|
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]
|
2020-12-30 22:07:13 +08:00
|
|
|
nalgebra = { version = "0.24", path = ".." }
|
2018-05-25 05:51:57 +08:00
|
|
|
num-traits = "0.2"
|
2020-10-25 22:25:13 +08:00
|
|
|
num-complex = { version = "0.2", default-features = false }
|
|
|
|
simba = "0.2"
|
2018-05-25 05:51:57 +08:00
|
|
|
serde = { version = "1.0", optional = true }
|
|
|
|
serde_derive = { version = "1.0", optional = true }
|
2018-05-27 03:12:15 +08:00
|
|
|
lapack = { version = "0.16", default-features = false }
|
2020-10-25 22:25:13 +08:00
|
|
|
lapack-src = { version = "0.5", default-features = false }
|
2017-08-03 01:38:28 +08:00
|
|
|
# clippy = "*"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-12-30 22:07:13 +08:00
|
|
|
nalgebra = { version = "0.24", features = [ "arbitrary" ], path = ".." }
|
2019-10-12 02:24:46 +08:00
|
|
|
quickcheck = "0.9"
|
2020-10-25 22:25:13 +08:00
|
|
|
approx = "0.3"
|
2019-10-12 02:24:46 +08:00
|
|
|
rand = "0.7"
|