nalgebra/nalgebra-lapack/Cargo.toml

49 lines
1.6 KiB
TOML
Raw Normal View History

[package]
name = "nalgebra-lapack"
2022-04-30 16:59:26 +08:00
version = "0.22.0"
2017-08-04 00:57:40 +08:00
authors = [ "Sébastien Crozet <developer@crozet.re>", "Andrew Straw <strawman@astraw.com>" ]
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" ]
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" }
[features]
serde-serialize = [ "serde", "nalgebra/serde-serialize" ]
proptest-support = [ "nalgebra/proptest-support" ]
arbitrary = [ "nalgebra/arbitrary" ]
# For BLAS/LAPACK
2022-10-24 02:36:06 +08:00
default = ["openblas"]
openblas = ["lapack-src/openblas"]
netlib = ["lapack-src/netlib"]
accelerate = ["lapack-src/accelerate"]
intel-mkl = ["lapack-src/intel-mkl"]
[dependencies]
2022-04-30 16:59:26 +08:00
nalgebra = { version = "0.31", path = ".." }
num-traits = "0.2"
2021-06-02 20:53:43 +08:00
num-complex = { version = "0.4", default-features = false }
2022-01-02 22:30:05 +08:00
simba = "0.7"
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 }
2022-10-24 02:36:06 +08:00
openblas-src = {version = "*", features = ["static"]}
# clippy = "*"
[dev-dependencies]
2022-04-30 16:59:26 +08:00
nalgebra = { version = "0.31", 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