Fix cargo metadata to allow publishing nalgebra-lapack and nalgebra-sparse.
This commit is contained in:
parent
5b9b94c610
commit
7fdac06365
|
@ -10,7 +10,7 @@ This updates all the dependencies of nalgebra to their latest version, including
|
||||||
- proptest 1.0
|
- proptest 1.0
|
||||||
- simba 0.4
|
- 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
|
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
|
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.
|
but it will be deprecated soon in favor of the `nalgebra-sparse` crate.
|
||||||
|
|
|
@ -9,7 +9,7 @@ homepage = "https://nalgebra.org"
|
||||||
repository = "https://github.com/dimforge/nalgebra"
|
repository = "https://github.com/dimforge/nalgebra"
|
||||||
readme = "../README.md"
|
readme = "../README.md"
|
||||||
categories = [ "science", "mathematics" ]
|
categories = [ "science", "mathematics" ]
|
||||||
keywords = [ "linear", "algebra", "matrix", "vector", "math", "lapack" ]
|
keywords = [ "linear", "algebra", "matrix", "vector", "lapack" ]
|
||||||
license = "BSD-3-Clause"
|
license = "BSD-3-Clause"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,14 @@ name = "nalgebra-sparse"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
authors = [ "Andreas Longva", "Sébastien Crozet <developer@crozet.re>" ]
|
authors = [ "Andreas Longva", "Sébastien Crozet <developer@crozet.re>" ]
|
||||||
edition = "2018"
|
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]
|
[features]
|
||||||
proptest-support = ["proptest", "nalgebra/proptest-support"]
|
proptest-support = ["proptest", "nalgebra/proptest-support"]
|
||||||
|
|
Loading…
Reference in New Issue