-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (26 loc) · 685 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (26 loc) · 685 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "rulinalg"
version = "0.4.2"
authors = ["AtheMathmo"]
categories = ["science"]
description = "A linear algebra library."
repository = "https://github.com/AtheMathmo/rulinalg"
documentation = "https://AtheMathmo.github.io/rulinalg/"
keywords = ["linalg","linear","algebra","linear-algebra","matrix"]
readme = "README.md"
license = "MIT"
[features]
io = ["csv", "rustc-serialize"]
[dependencies]
num = {version = "0.1.36", default-features = false }
matrixmultiply = "0.1.13"
[dev-dependencies]
rand = "0.3"
quickcheck = "0.4"
itertools = "0.5.9"
[dependencies.csv]
version = "0.14.7"
optional = true
[dependencies.rustc-serialize]
version = "0.3"
optional = true