lapack-src 0.1.0

The package provides a LAPACK implementation of choice.
Documentation
# lapack-src [![Package][package-img]][package-url] [![Documentation][documentation-img]][documentation-url] [![Build][build-img]][build-url]

The packages provides a [LAPACK] implementation of choice.

Note that this package does not contain any functionality other than compiling
(if necessary) and linking to the chosen implementation. Bindings are available
in [`lapack-sys`][crate-lapack-sys], and wrappers are available in
[`lapack`][crate-lapack].

## Configuration

The following implementations are available:

* `accelerate`, which is the one in the [Accelerate] framework (macOS only),
* `netlib`, which is the reference one by [Netlib], and
* `openblas`, which is the one in [OpenBLAS].

An implementation can be chosen as follows:

```toml
[dependencies]
lapack-src = { version = "0.1", features = ["accelerate"] }
lapack-src = { version = "0.1", features = ["netlib"] }
lapack-src = { version = "0.1", features = ["openblas"] }
```

## Contribution

Your contribution is highly appreciated. Do not hesitate to open an issue or a
pull request. Note that any contribution submitted for inclusion in the project
will be licensed according to the terms given in [LICENSE.md](LICENSE.md).

[lapack]: https://en.wikipedia.org/wiki/LAPACK
[crate-lapack-sys]: https://crates.io/crates/lapack-sys
[crate-lapack]: https://crates.io/crates/lapack

[accelerate]: https://developer.apple.com/reference/accelerate
[netlib]: http://www.netlib.org/
[openblas]: http://www.openblas.net/

[build-img]: https://travis-ci.org/stainless-steel/lapack-src.svg?branch=master
[build-url]: https://travis-ci.org/stainless-steel/lapack-src
[documentation-img]: https://docs.rs/lapack-src/badge.svg
[documentation-url]: https://docs.rs/lapack-src
[package-img]: https://img.shields.io/crates/v/lapack-src.svg
[package-url]: https://crates.io/crates/lapack-src