41 lines
1.4 KiB
TOML
41 lines
1.4 KiB
TOML
[package]
|
|
name = "nalgebra-lapack"
|
|
version = "0.13.0"
|
|
authors = [ "Sébastien Crozet <developer@crozet.re>", "Andrew Straw <strawman@astraw.com>" ]
|
|
|
|
description = "Linear algebra library with transformations and satically-sized or dynamically-sized matrices."
|
|
documentation = "https://nalgebra.org/doc/nalgebra/index.html"
|
|
homepage = "https://nalgebra.org"
|
|
repository = "https://github.com/rustsim/nalgebra"
|
|
readme = "README.md"
|
|
keywords = [ "linear", "algebra", "matrix", "vector" ]
|
|
license = "BSD-3-Clause"
|
|
edition = "2018"
|
|
|
|
[features]
|
|
serde-serialize = [ "serde", "serde_derive" ]
|
|
|
|
# For BLAS/LAPACK
|
|
default = ["openblas"]
|
|
openblas = ["lapack-src/openblas"]
|
|
netlib = ["lapack-src/netlib"]
|
|
accelerate = ["lapack-src/accelerate"]
|
|
intel-mkl = ["lapack-src/intel-mkl"]
|
|
|
|
[dependencies]
|
|
nalgebra = { version = "0.21", path = ".." }
|
|
num-traits = "0.2"
|
|
num-complex = { version = "0.2", default-features = false }
|
|
simba = "0.1"
|
|
serde = { version = "1.0", optional = true }
|
|
serde_derive = { version = "1.0", optional = true }
|
|
lapack = { version = "0.16", default-features = false }
|
|
lapack-src = { version = "0.5", default-features = false }
|
|
# clippy = "*"
|
|
|
|
[dev-dependencies]
|
|
nalgebra = { version = "0.21", path = "..", features = [ "arbitrary" ] }
|
|
quickcheck = "0.9"
|
|
approx = "0.3"
|
|
rand = "0.7"
|