-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
75 lines (63 loc) · 1.38 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
68
69
70
71
72
73
74
75
[package]
name = "lmutils"
version = "0.2.35"
edition = "2021"
description = "A set of utilities for working with linear regression models"
license = "MIT"
repository = "https://github.com/mrvillage/lmutils"
[dependencies]
extendr-api = { version = "0.6.0", features = ["either"], optional = true }
faer = "0.19"
flate2 = "1.0.30"
libc = "0.2.155"
memfile = "0.3.2"
rayon = "1.10.0"
rkyv = { version = "0.7.44", features = [
"validation",
"size_64",
"std",
"archive_le",
], default-features = false }
serde = { version = "1.0.202", features = ["derive"] }
serde_cbor = "0.11.2"
serde_json = "1.0.117"
statrs = "0.17.1"
thiserror = "1.0.61"
tracing = { version = "0.1.40", features = ["log"] }
cfg-if = "1.0"
pulp = "0.18"
rand = "0.8.5"
rand_distr = "0.4.3"
num_cpus = "1.16.0"
diol = { version = "0.8.3", default-features = false }
aligned-vec = "0.6.1"
[dev-dependencies]
test-log = "0.2.16"
[build-dependencies]
libc = "0.2.155"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage_nightly)'] }
[features]
default = []
r = ["dep:extendr-api"]
[[bench]]
name = "r2_simd"
harness = false
[[bench]]
name = "mat_v_rkyv"
harness = false
[[bench]]
name = "logistic_regression"
harness = false
[[bench]]
name = "standardize"
harness = false
[[bench]]
name = "expand_packing"
harness = false
[[bench]]
name = "unpack"
harness = false
[[bench]]
name = "pack"
harness = false