-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
67 lines (53 loc) · 1.35 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
59
60
61
62
63
64
65
66
67
[package]
name = "compute"
version = "0.2.4"
authors = ["Jeff Shen <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
readme = "README.md"
description = "A crate for statistical computing."
repository = "https://github.com/al-jshen/compute"
categories = ["science"]
keywords = ["statistics", "compute", "data"]
[dependencies]
alea = "0.2"
approx_eq = "0.1"
reverse = "0.2"
impl_ops = "0.1"
serde = { version = "1.0.130", features = ["derive"] }
serde_derive = "1.0.130"
rayon = "1.5.1"
[features]
blas = ["blas_crate", "accelerate-src", "openblas-src"]
lapack = ["lapack_crate", "accelerate-src", "openblas-src"]
[dependencies.blas_crate]
package = "blas"
version = "0.22"
optional = true
default-features = false
[dependencies.lapack_crate]
package = "lapack"
version = "0.19"
optional = true
default-features = false
[target.'cfg(all(target_os = "macos"))'.dependencies]
accelerate-src = {version = "0.3", optional = true}
[target.'cfg(not(target_os = "macos"))'.dependencies]
openblas-src = {version = "0.10", optional = true}
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "benchmark_statistics"
harness = false
[[bench]]
name = "benchmark_linalg"
harness = false
[[bench]]
name = "benchmark_distributions"
harness = false
[[bench]]
name = "benchmark_functions"
harness = false
[[bench]]
name = "benchmark_timeseries"
harness = false