-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (27 loc) · 946 Bytes
/
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
[package]
name = "skato-rs"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
libc = "0.2.148"
ndarray = { version = "0.15.6", features = ["blas"] }
# NOTES on openlbas:
#
# 1. on mac use, it is easier to use system openblas
# brew install openblas
# export PKG_CONFIG_PATH="/usr/local/opt/openblas/lib/pkgconfig"
# # then change ndarray-glm/ndarray-linalg features to "openblas-system"
# 2. on linux
# it is easier to just compile from source by
# changing ndarray-glm/ndarray-linalg features to "openblas-static"
# for logistic regression
ndarray-glm = { version = "0.0.12", features = ["openblas-static"] }
# for matrix decomposition
ndarray-linalg = { version = "0.16", features = ["openblas-static"] }
# for numerical integration
peroxide = "0.34.1"
# for chisquare distribution
statrs = "0.16.0"
[build-dependencies]
cc = "1.0.83"