nalgebra/Cargo.toml

35 lines
857 B
TOML

[package]
name = "nalgebra"
version = "0.10.1"
authors = [ "Sébastien Crozet <developer@crozet.re>" ]
description = "Linear algebra library for computer physics, computer graphics and general low-dimensional linear algebra for Rust."
documentation = "http://nalgebra.org/doc/nalgebra/index.html"
homepage = "http://nalgebra.org"
repository = "https://github.com/sebcrozet/nalgebra"
readme = "README.md"
keywords = [ "linear", "algebra", "matrix", "vector" ]
license = "BSD-3-Clause"
[lib]
name = "nalgebra"
path = "src/lib.rs"
[features]
arbitrary = [ "quickcheck" ]
[dependencies]
rustc-serialize = "0.3"
typenum = "1.4"
generic-array = "0.2"
rand = "0.3"
num-traits = "0.1"
num-complex = "0.1"
approx = "0.1"
alga = "0.4"
# clippy = "*"
[dependencies.quickcheck]
optional = true
version = "0.3"