forked from rust-ndarray/ndarray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
58 lines (42 loc) · 1.2 KB
/
Cargo.toml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[package]
name = "ndarray"
version = "0.7.1"
authors = ["bluss"]
license = "MIT/Apache-2.0"
repository = "https://github.com/bluss/rust-ndarray"
documentation = "https://bluss.github.io/rust-ndarray/"
description = "An N-dimensional array for general elements and for numerics. Lightweight array views and slicing; views support chunking and splitting."
keywords = ["array", "data-structure", "multidimensional", "matrix", "blas"]
build = "build.rs"
[lib]
name = "ndarray"
bench = false
test = false
[dependencies.num-traits]
version = "0.1.32"
default-features = false
[dependencies.num-complex]
version = "0.1.32"
default-features = false
[dependencies.itertools]
version = "0.5.0"
[dependencies.rustc-serialize]
version = "0.3.20"
optional = true
[dependencies]
# Use via the `blas` crate feature!
blas-sys = { version = "0.6.3", optional = true, default-features = false }
matrixmultiply = { version = "0.1.11" }
[dependencies.serde]
version = "0.8"
optional = true
[features]
blas = ["blas-sys"]
# These features are used for testing
blas-openblas-sys = ["blas"]
test = ["blas-openblas-sys"]
# This feature is used for docs
docs = ["rustc-serialize", "serde"]
[profile.release]
[profile.bench]
debug = true