[package]
edition = "2021"
name = "lax"
version = "0.18.1"
authors = ["Toshiki Teramura <toshiki.teramura@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "LAPACK wrapper without ndarray"
documentation = "https://docs.rs/lax/"
readme = "README.md"
keywords = [
"lapack",
"matrix",
]
categories = [
"algorithms",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-ndarray/ndarray-linalg"
resolver = "1"
[features]
default = []
intel-mkl = ["intel-mkl-static-lp64-seq"]
intel-mkl-dynamic-ilp64-iomp = ["intel-mkl-src/mkl-dynamic-ilp64-iomp"]
intel-mkl-dynamic-ilp64-seq = ["intel-mkl-src/mkl-dynamic-ilp64-seq"]
intel-mkl-dynamic-lp64-iomp = ["intel-mkl-src/mkl-dynamic-lp64-iomp"]
intel-mkl-dynamic-lp64-seq = ["intel-mkl-src/mkl-dynamic-lp64-seq"]
intel-mkl-static = ["intel-mkl-src/mkl-static-lp64-seq"]
intel-mkl-static-ilp64-iomp = ["intel-mkl-src/mkl-static-ilp64-iomp"]
intel-mkl-static-ilp64-seq = ["intel-mkl-src/mkl-static-ilp64-seq"]
intel-mkl-static-lp64-iomp = ["intel-mkl-src/mkl-static-lp64-iomp"]
intel-mkl-static-lp64-seq = ["intel-mkl-src/mkl-static-lp64-seq"]
intel-mkl-system = ["intel-mkl-src/mkl-dynamic-lp64-seq"]
netlib = ["netlib-static"]
netlib-static = ["netlib-src/static"]
netlib-system = ["netlib-src/system"]
openblas = ["openblas-static"]
openblas-static = ["openblas-src/static"]
openblas-system = ["openblas-src/system"]
[lib]
name = "lax"
path = "src/lib.rs"
[dependencies.cauchy]
version = "0.4.0"
[dependencies.intel-mkl-src]
version = "0.8.1"
optional = true
default-features = false
[dependencies.katexit]
version = "0.1.2"
[dependencies.lapack-sys]
version = "0.15.0"
[dependencies.netlib-src]
version = "0.9.0"
features = ["cblas"]
optional = true
default-features = false
[dependencies.num-traits]
version = "0.2.14"
[dependencies.openblas-src]
version = "0.10.16"
features = [
"cblas",
"rustls",
]
optional = true
default-features = false
[dependencies.thiserror]
version = "2.0.0"