nalgebra 0.16.13

Linear algebra library with transformations and statically-sized or dynamically-sized matrices.
Documentation
[package]
name    = "nalgebra"
version = "0.16.13"
authors = [ "Sébastien Crozet <developer@crozet.re>" ]

description = "Linear algebra library with transformations and statically-sized or dynamically-sized matrices."
documentation = "http://nalgebra.org/rustdoc/nalgebra/index.html"
homepage = "http://nalgebra.org"
repository = "https://github.com/rustsim/nalgebra"
readme = "README.md"
categories = [ "science" ]
keywords = [ "linear", "algebra", "matrix", "vector", "math" ]
license = "BSD-3-Clause"

[lib]
name = "nalgebra"
path = "src/lib.rs"

[features]
default         = [ "std" ]
std             = [ "matrixmultiply", "rand/std", "alga/std" ]
stdweb          = [ "rand/stdweb" ]
arbitrary       = [ "quickcheck" ]
serde-serialize = [ "serde", "serde_derive", "num-complex/serde" ]
abomonation-serialize = [ "abomonation" ]
debug = [ ]
alloc = [ ]

[dependencies]
typenum        = "1.10"
generic-array  = "0.11"
rand           = { version = "0.5", default-features = false }
num-traits     = { version = "0.2", default-features = false }
num-complex    = { version = "0.2", default-features = false }
approx         = { version = "0.3", default-features = false }
alga           = { version = "0.7", default-features = false }
matrixmultiply = { version = "0.1", optional = true }
serde          = { version = "1.0", optional = true }
serde_derive   = { version = "1.0", optional = true }
abomonation    = { version = "0.5", optional = true }
mint           = { version = "0.5", optional = true }
quickcheck     = { version = "0.6", optional = true }

[dev-dependencies]
serde_json = "1.0"

[workspace]
members = [ "nalgebra-lapack", "nalgebra-glm" ]