Skip to content

Commit 72d6e0a

Browse files
authored
chore: rename nalgebra.org to nalgebra.rs everywhere (#1534)
1 parent fa7afd5 commit 72d6e0a

File tree

13 files changed

+24
-24
lines changed

13 files changed

+24
-24
lines changed

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -720,7 +720,7 @@ All dependencies have been updated to their latest versions.
720720

721721
The most notable change of this release is the support for using part of the library without the rust standard
722722
library (i.e. it supports `#![no_std]`). See the
723-
corresponding [documentation](https://nalgebra.org/wasm_and_embedded_programming/).
723+
corresponding [documentation](https://nalgebra.rs/wasm_and_embedded_programming/).
724724

725725
### Modified
726726

@@ -904,7 +904,7 @@ The main change of this release is the update of the dependency serde to 1.0.
904904

905905
## [0.11.0]
906906

907-
The [website](https://nalgebra.org) has been fully rewritten and gives a good
907+
The [website](https://nalgebra.rs) has been fully rewritten and gives a good
908908
overview of all the added/modified features.
909909

910910
This version is a major rewrite of the library. Major changes are:
@@ -928,10 +928,10 @@ This version is a major rewrite of the library. Major changes are:
928928
### Added
929929

930930
Lots of features including rectangular matrices, slices, and Serde
931-
serialization. Refer to the brand new [website](https://nalgebra.org) for more
931+
serialization. Refer to the brand new [website](https://nalgebra.rs) for more
932932
details. The following free-functions have been added as well:
933933

934-
* `::id()` that returns the universal [identity element](https://nalgebra.org/performance_tricks/#the-id-type)
934+
* `::id()` that returns the universal [identity element](https://nalgebra.rs/performance_tricks/#the-id-type)
935935
of type `Id`.
936936
* `::inf_sup()` that returns both the infimum and supremum of a value at the
937937
same time.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ version = "0.33.2"
44
authors = ["Sébastien Crozet <developer@crozet.re>"]
55

66
description = "General-purpose linear algebra library with transformations and statically-sized or dynamically-sized matrices."
7-
documentation = "https://www.nalgebra.org/docs"
8-
homepage = "https://nalgebra.org"
7+
documentation = "https://www.nalgebra.rs/docs"
8+
homepage = "https://nalgebra.rs"
99
repository = "https://github.com/dimforge/nalgebra"
1010
readme = "README.md"
1111
categories = ["science", "mathematics", "wasm", "no-std"]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<img src="https://nalgebra.org/img/logo_nalgebra.svg" alt="crates.io">
2+
<img src="https://nalgebra.rs/img/logo_nalgebra.svg" alt="crates.io">
33
</p>
44
<p align="center">
55
<a href="https://discord.gg/vt9DJSW">
@@ -14,7 +14,7 @@
1414
</p>
1515
<p align = "center">
1616
<strong>
17-
<a href="https://nalgebra.org">Users guide</a> | <a href="https://docs.rs/nalgebra/latest/nalgebra/">Documentation</a>
17+
<a href="https://nalgebra.rs">Users guide</a> | <a href="https://docs.rs/nalgebra/latest/nalgebra/">Documentation</a>
1818
</strong>
1919
</p>
2020

nalgebra-glm/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ version = "0.19.0"
44
authors = ["sebcrozet <developer@crozet.re>"]
55

66
description = "A computer-graphics oriented API for nalgebra, inspired by the C++ GLM library."
7-
documentation = "https://www.nalgebra.org/docs"
8-
homepage = "https://nalgebra.org"
7+
documentation = "https://www.nalgebra.rs/docs"
8+
homepage = "https://nalgebra.rs"
99
repository = "https://github.com/dimforge/nalgebra"
1010
readme = "../README.md"
1111
categories = ["science", "mathematics", "wasm", "no standard library"]

nalgebra-glm/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
speaking, it supports all the common transformations like rotations, translations, scaling, shearing,
3131
and projections but operating in homogeneous coordinates. This means all the 2D transformations are
3232
expressed as 3x3 matrices, and all the 3D transformations as 4x4 matrices. This is less computationally-efficient
33-
and memory-efficient than nalgebra's [transformation types](https://www.nalgebra.org/points_and_transformations/#transformations),
33+
and memory-efficient than nalgebra's [transformation types](https://www.nalgebra.rs/points_and_transformations/#transformations),
3434
but this has the benefit of being simpler to use.
3535
### Main differences compared to GLM
3636
While **nalgebra-glm** follows the feature line of the C++ GLM library, quite a few differences
@@ -120,7 +120,7 @@
120120
missing_copy_implementations,
121121
missing_debug_implementations
122122
)]
123-
#![doc(html_favicon_url = "https://nalgebra.org/img/favicon.ico")]
123+
#![doc(html_favicon_url = "https://nalgebra.rs/img/favicon.ico")]
124124
#![cfg_attr(not(feature = "std"), no_std)]
125125

126126
extern crate num_traits as num;

nalgebra-lapack/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ version = "0.25.0"
44
authors = ["Sébastien Crozet <developer@crozet.re>", "Andrew Straw <strawman@astraw.com>"]
55

66
description = "Matrix decompositions using nalgebra matrices and Lapack bindings."
7-
documentation = "https://www.nalgebra.org/docs"
8-
homepage = "https://nalgebra.org"
7+
documentation = "https://www.nalgebra.rs/docs"
8+
homepage = "https://nalgebra.rs"
99
repository = "https://github.com/dimforge/nalgebra"
1010
readme = "../README.md"
1111
categories = ["science", "mathematics"]

nalgebra-lapack/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@
6969
#![deny(unused_results)]
7070
#![deny(missing_docs)]
7171
#![doc(
72-
html_favicon_url = "https://nalgebra.org/img/favicon.ico",
73-
html_root_url = "https://nalgebra.org/rustdoc"
72+
html_favicon_url = "https://nalgebra.rs/img/favicon.ico",
73+
html_root_url = "https://nalgebra.rs/rustdoc"
7474
)]
7575

7676
extern crate lapack;

nalgebra-macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ version = "0.2.2"
44
authors = ["Andreas Longva", "Sébastien Crozet <developer@crozet.re>"]
55
edition = "2018"
66
description = "Procedural macros for nalgebra"
7-
documentation = "https://www.nalgebra.org/docs"
8-
homepage = "https://nalgebra.org"
7+
documentation = "https://www.nalgebra.rs/docs"
8+
homepage = "https://nalgebra.rs"
99
repository = "https://github.com/dimforge/nalgebra"
1010
readme = "../README.md"
1111
categories = ["science", "mathematics"]

nalgebra-sparse/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ version = "0.10.0"
44
authors = ["Andreas Longva", "Sébastien Crozet <developer@crozet.re>"]
55
edition = "2018"
66
description = "Sparse matrix computation based on nalgebra."
7-
documentation = "https://www.nalgebra.org/docs"
8-
homepage = "https://nalgebra.org"
7+
documentation = "https://www.nalgebra.rs/docs"
8+
homepage = "https://nalgebra.rs"
99
repository = "https://github.com/dimforge/nalgebra"
1010
readme = "../README.md"
1111
categories = ["science", "mathematics", "wasm", "no-std"]

nalgebra-sparse/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! Sparse matrices and algorithms for [nalgebra](https://www.nalgebra.org).
1+
//! Sparse matrices and algorithms for [nalgebra](https://www.nalgebra.rs).
22
//!
33
//! This crate extends `nalgebra` with sparse matrix formats and operations on sparse matrices.
44
//!

0 commit comments

Comments
 (0)