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