Skip to content

Commit b4f6044

Browse files
committed
Update the links and descriptions
1 parent 5516490 commit b4f6044

File tree

3 files changed

+9
-11
lines changed

3 files changed

+9
-11
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ authors = [
77
"David Greenberg <[email protected]>",
88
"Ivan Ukhov <[email protected]>",
99
]
10-
description = "The package provides an interface to the Linear Algebra PACKage."
10+
description = "The package provides wrappers for LAPACK (Fortran)."
1111
documentation = "https://docs.rs/lapack"
12-
homepage = "https://github.com/stainless-steel/lapack"
13-
repository = "https://github.com/stainless-steel/lapack"
12+
homepage = "https://github.com/blas-lapack-rs/lapack"
13+
repository = "https://github.com/blas-lapack-rs/lapack"
1414
readme = "README.md"
1515
categories = ["api-bindings", "science"]
1616
keywords = ["linear-algebra"]

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# LAPACK [![Package][package-img]][package-url] [![Documentation][documentation-img]][documentation-url] [![Build][build-img]][build-url]
22

3-
The package provides an interface to the [Linear Algebra PACKage][lapack].
3+
The package provides wrappers for [LAPACK] (Fortran).
44

55
## Example (C)
66

@@ -52,8 +52,8 @@ will be licensed according to the terms given in [LICENSE.md](LICENSE.md).
5252

5353
[lapack]: https://en.wikipedia.org/wiki/LAPACK
5454

55-
[build-img]: https://travis-ci.org/stainless-steel/lapack.svg?branch=master
56-
[build-url]: https://travis-ci.org/stainless-steel/lapack
55+
[build-img]: https://travis-ci.org/blas-lapack-rs/lapack.svg?branch=master
56+
[build-url]: https://travis-ci.org/blas-lapack-rs/lapack
5757
[documentation-img]: https://docs.rs/lapack/badge.svg
5858
[documentation-url]: https://docs.rs/lapack
5959
[package-img]: https://img.shields.io/crates/v/lapack.svg

src/lib.rs

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,18 @@
1-
//! Interface to the [Linear Algebra PACKage][lapack].
1+
//! Wrappers for [LAPACK]
22
//!
33
//! [lapack]: https://en.wikipedia.org/wiki/LAPACK
44
55
extern crate lapack_sys;
66
extern crate libc;
77
extern crate num_complex as num;
88

9-
/// A complex number with 32-bit parts.
9+
/// A complex number with 32-bit parts
1010
#[allow(non_camel_case_types)]
1111
pub type c32 = num::Complex<f32>;
1212

13-
/// A complex number with 64-bit parts.
13+
/// A complex number with 64-bit parts
1414
#[allow(non_camel_case_types)]
1515
pub type c64 = num::Complex<f64>;
1616

17-
#[cfg(not(feature = "accelerate"))]
1817
pub mod c;
19-
2018
pub mod fortran;

0 commit comments

Comments
 (0)