Release nalgebra v0.17 and nalgebra-glm v0.3.
This commit is contained in:
parent
24e6ce6274
commit
fac709b0c0
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "nalgebra"
|
||||
version = "0.16.13"
|
||||
version = "0.17.0"
|
||||
authors = [ "Sébastien Crozet <developer@crozet.re>" ]
|
||||
|
||||
description = "Linear algebra library with transformations and statically-sized or dynamically-sized matrices."
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "nalgebra-glm"
|
||||
version = "0.2.1"
|
||||
version = "0.3.0"
|
||||
authors = ["sebcrozet <developer@crozet.re>"]
|
||||
|
||||
description = "A computer-graphics oriented API for nalgebra, inspired by the C++ GLM library."
|
||||
|
@ -24,4 +24,4 @@ abomonation-serialize = [ "nalgebra/abomonation-serialize" ]
|
|||
num-traits = { version = "0.2", default-features = false }
|
||||
approx = { version = "0.3", default-features = false }
|
||||
alga = { version = "0.8", default-features = false }
|
||||
nalgebra = { path = "..", version = "^0.16.13", default-features = false }
|
||||
nalgebra = { path = "..", version = "0.17", default-features = false }
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
```toml
|
||||
[dependencies]
|
||||
nalgebra-glm = "0.1"
|
||||
nalgebra-glm = "0.3"
|
||||
```
|
||||
|
||||
Then, you should add an `extern crate` statement to your `lib.rs` or `main.rs` file. It is **strongly
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "nalgebra-lapack"
|
||||
version = "0.8.0"
|
||||
version = "0.9.0"
|
||||
authors = [ "Sébastien Crozet <developer@crozet.re>", "Andrew Straw <strawman@astraw.com>" ]
|
||||
|
||||
description = "Linear algebra library with transformations and satically-sized or dynamically-sized matrices."
|
||||
|
@ -22,7 +22,7 @@ accelerate = ["lapack-src/accelerate"]
|
|||
intel-mkl = ["lapack-src/intel-mkl"]
|
||||
|
||||
[dependencies]
|
||||
nalgebra = { version = "0.16", path = ".." }
|
||||
nalgebra = { version = "0.17", path = ".." }
|
||||
num-traits = "0.2"
|
||||
num-complex = { version = "0.2", default-features = false }
|
||||
alga = { version = "0.8", default-features = false }
|
||||
|
@ -33,7 +33,7 @@ lapack-src = { version = "0.2", default-features = false }
|
|||
# clippy = "*"
|
||||
|
||||
[dev-dependencies]
|
||||
nalgebra = { version = "0.16", path = "..", features = [ "arbitrary" ] }
|
||||
nalgebra = { version = "0.17", path = "..", features = [ "arbitrary" ] }
|
||||
quickcheck = "0.8"
|
||||
approx = "0.3"
|
||||
rand = "0.6"
|
||||
|
|
|
@ -15,7 +15,7 @@ Simply add the following to your `Cargo.toml` file:
|
|||
|
||||
```.ignore
|
||||
[dependencies]
|
||||
nalgebra = "0.16"
|
||||
nalgebra = "0.17"
|
||||
```
|
||||
|
||||
|
||||
|
@ -81,7 +81,7 @@ an optimized set of tools for computer graphics and physics. Those features incl
|
|||
#![deny(non_upper_case_globals)]
|
||||
#![deny(unused_qualifications)]
|
||||
#![deny(unused_results)]
|
||||
#![warn(missing_docs)] // FIXME: deny this
|
||||
#![deny(missing_docs)]
|
||||
#![warn(incoherent_fundamental_impls)]
|
||||
#![doc(
|
||||
html_favicon_url = "http://nalgebra.org/img/favicon.ico",
|
||||
|
|
Loading…
Reference in New Issue