nalgebra/Cargo.toml

40 lines
1.0 KiB
TOML
Raw Normal View History

2014-06-25 01:25:57 +08:00
[package]
name = "nalgebra"
2017-05-18 04:48:09 +08:00
version = "0.12.3"
authors = [ "Sébastien Crozet <developer@crozet.re>" ]
2014-06-25 01:25:57 +08:00
2017-05-26 04:04:42 +08:00
description = "Linear algebra library with transformations and statically-sized or dynamically-sized matrices."
documentation = "http://nalgebra.org/rustdoc/nalgebra/index.html"
2014-11-23 02:51:28 +08:00
homepage = "http://nalgebra.org"
repository = "https://github.com/sebcrozet/nalgebra"
readme = "README.md"
keywords = [ "linear", "algebra", "matrix", "vector" ]
license = "BSD-3-Clause"
[lib]
2014-07-23 01:58:26 +08:00
name = "nalgebra"
path = "src/lib.rs"
[features]
arbitrary = [ "quickcheck" ]
2017-06-10 07:13:38 +08:00
serde-serialize = [ "serde", "serde_derive", "num-complex/serde" ]
[dependencies]
typenum = "1.4"
2017-05-21 03:24:45 +08:00
generic-array = "0.8"
rand = "0.3"
num-traits = "0.1"
num-complex = "0.1"
approx = "0.1"
alga = "0.5"
2017-04-25 02:05:45 +08:00
serde = { version = "1.0", optional = true }
serde_derive = { version = "1.0", optional = true }
# clippy = "*"
[dependencies.quickcheck]
optional = true
2017-05-21 03:24:45 +08:00
version = "0.4"
2017-02-13 01:17:09 +08:00
[dev-dependencies]
2017-04-25 02:05:45 +08:00
serde_json = "1.0"