diff --git a/CHANGELOG.md b/CHANGELOG.md index 23cdd62e..bafa8337 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ This updates all the dependencies of nalgebra to their latest version, including - proptest 1.0 - simba 0.4 -### New crate! +### New crate: nalgebra-sparse Alongside this release of `nalgebra`, we are releasing `nalgebra-sparse`: a crate dedicated to sparse matrix computation with `nalgebra`. The `sparse` module of `nalgebra`itself still exists for backward compatibility but it will be deprecated soon in favor of the `nalgebra-sparse` crate. diff --git a/nalgebra-lapack/Cargo.toml b/nalgebra-lapack/Cargo.toml index 322dc108..c2de1b96 100644 --- a/nalgebra-lapack/Cargo.toml +++ b/nalgebra-lapack/Cargo.toml @@ -9,7 +9,7 @@ homepage = "https://nalgebra.org" repository = "https://github.com/dimforge/nalgebra" readme = "../README.md" categories = [ "science", "mathematics" ] -keywords = [ "linear", "algebra", "matrix", "vector", "math", "lapack" ] +keywords = [ "linear", "algebra", "matrix", "vector", "lapack" ] license = "BSD-3-Clause" edition = "2018" diff --git a/nalgebra-sparse/Cargo.toml b/nalgebra-sparse/Cargo.toml index cc8d5276..f58be6e6 100644 --- a/nalgebra-sparse/Cargo.toml +++ b/nalgebra-sparse/Cargo.toml @@ -3,6 +3,14 @@ name = "nalgebra-sparse" version = "0.1.0" authors = [ "Andreas Longva", "Sébastien Crozet " ] edition = "2018" +description = "Sparse matrix computation based on nalgebra." +documentation = "https://www.nalgebra.org/docs" +homepage = "https://nalgebra.org" +repository = "https://github.com/dimforge/nalgebra" +readme = "../README.md" +categories = [ "science", "mathematics", "wasm", "no-std" ] +keywords = [ "linear", "algebra", "matrix", "vector", "math" ] +license = "Apache-2.0" [features] proptest-support = ["proptest", "nalgebra/proptest-support"]