From b94eb66362dc90bc869d7b254c58431892763625 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Crozet?= Date: Thu, 3 Aug 2017 18:57:40 +0200 Subject: [PATCH] nalgebra-lapack: credit @astraw. --- nalgebra-lapack/Cargo.toml | 2 +- nalgebra-lapack/README.md | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/nalgebra-lapack/Cargo.toml b/nalgebra-lapack/Cargo.toml index e60a7010..8b252f09 100644 --- a/nalgebra-lapack/Cargo.toml +++ b/nalgebra-lapack/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "nalgebra-lapack" version = "0.11.2" -authors = [ "Sébastien Crozet " ] +authors = [ "Sébastien Crozet ", "Andrew Straw " ] description = "Linear algebra library with transformations and satically-sized or dynamically-sized matrices." documentation = "http://nalgebra.org/doc/nalgebra/index.html" diff --git a/nalgebra-lapack/README.md b/nalgebra-lapack/README.md index 0ae829df..dc3d0b96 100644 --- a/nalgebra-lapack/README.md +++ b/nalgebra-lapack/README.md @@ -1,6 +1,6 @@ # nalgebra-lapack [![Version][version-img]][version-url] [![Status][status-img]][status-url] [![Doc][doc-img]][doc-url] -Rust library for linear algebra using nalgebra and LAPACK +Rust library for linear algebra using nalgebra and LAPACK. ## Documentation @@ -51,3 +51,9 @@ On Mac OS X, do this to use Apple's Accelerate framework: [status-url]: https://travis-ci.org/strawlab/nalgebra-lapack [doc-img]: https://docs.rs/nalgebra-lapack/badge.svg [doc-url]: https://docs.rs/nalgebra-lapack/ + +## Contributors +This integration of LAPACK on nalgebra was +[initiated](https://github.com/strawlab/nalgebra-lapack) by Andrew Straw. It +then became officially supported and integrated to the main nalgebra +repository.