nalgebra/nalgebra-lapack/Cargo.toml

48 lines
1.5 KiB
TOML
Raw Normal View History

[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>" ]
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" ]
license = "MIT"
2021-01-29 20:33:37 +08:00
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
default = ["netlib"]
openblas = ["lapack-src/openblas"]
netlib = ["lapack-src/netlib"]
accelerate = ["lapack-src/accelerate"]
intel-mkl = ["lapack-src/intel-mkl"]
[dependencies]
2023-01-15 00:04:22 +08:00
nalgebra = { version = "0.32", path = ".." }
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"
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 }
# 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