netlib-provider 0.1.1

BLAS/LAPACK provider using the Netlib implementation
# Netlib Provider

The package provides [BLAS][1] and [LAPACK][2] using the [Netlib][3]
implementation. By default, the package will build and use a bundled Netlib,
which requires a Fortran and C compiler.

The following Cargo features are supported:

* `system-netlib` to skip building the bundled Netlib,
* `exclude-cblas` to skip building CBLAS, and
* `exclude-lapacke` to skip building LAPACKE.

## Where are all the FFI definitions?

This package provides only an implementation of BLAS and LAPACK. Bindings are
available in [libblas-sys][4] and [liblapack-sys][5], and wrappers are available
in [blas][6] and [lapack][7].

## Contributing

1. Fork the project.
2. Implement your idea.
3. Open a pull request.

[1]: https://en.wikipedia.org/wiki/Basic_Linear_Algebra_Subprograms
[2]: https://en.wikipedia.org/wiki/LAPACK
[3]: http://www.netlib.org/lapack

[4]: https://github.com/stainless-steel/libblas-sys
[5]: https://github.com/stainless-steel/liblapack-sys
[6]: https://github.com/stainless-steel/blas
[7]: https://github.com/stainless-steel/lapack