nalgebra/Cargo.toml

50 lines
1.6 KiB
TOML
Raw Normal View History

2014-06-25 01:25:57 +08:00
[package]
name = "nalgebra"
2018-05-17 22:02:18 +08:00
version = "0.14.4"
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]
default = [ "std" ]
2018-05-20 22:05:49 +08:00
std = [ "matrixmultiply", "rand/std", "alga/std" ]
arbitrary = [ "quickcheck" ]
2017-06-10 07:13:38 +08:00
serde-serialize = [ "serde", "serde_derive", "num-complex/serde" ]
2017-08-14 22:26:36 +08:00
abomonation-serialize = [ "abomonation" ]
debug = [ ]
2018-05-24 23:17:34 +08:00
alloc = [ ]
[dependencies]
typenum = "1.10"
generic-array = "0.11"
2018-05-23 05:58:14 +08:00
rand = { version = "0.5", default-features = false }
num-traits = { version = "0.2", default-features = false }
num-complex = { version = "0.2.0-git", git = "https://github.com/rust-num/num-complex", default-features = false }
2018-05-23 05:58:14 +08:00
approx = { version = "0.2", default-features = false }
alga = { version = "0.5", git = "https://github.com/sebcrozet/alga.git", branch = "no_std", default-features = false }
matrixmultiply = { version = "0.1", optional = true }
serde = { version = "1.0", optional = true }
serde_derive = { version = "1.0", optional = true }
2017-07-25 23:04:12 +08:00
abomonation = { version = "0.4", optional = true }
mint = { version = "0.5", optional = true }
[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"
[workspace]
members = [ "nalgebra-lapack" ]