-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
55 lines (50 loc) · 1.36 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
[package]
name = "pmcore"
version = "0.7.1"
edition = "2021"
authors = [
"Julián D. Otálvaro <[email protected]>",
"Markus Hovd",
"Michael Neely",
"Walter Yamada",
]
description = "Rust library with the building blocks needed to create new Non-Parametric algorithms and its integration with Pmetrics."
license = "GPL-3.0"
documentation = "https://lapkb.github.io/PMcore/pmcore/"
repository = "https://github.com/LAPKB/PMcore"
exclude = [".github/*", ".vscode/*"]
[dependencies]
csv = "1.2.1"
ndarray = { version = "0.15.6", features = ["rayon"] }
serde = "1.0.188"
serde_derive = "1.0.188"
serde_json = "1.0.66"
sobol_burley = "0.5.0"
ndarray-stats = "0.5.1"
linfa-linalg = "0.1.0"
tokio = { version = "1.32.0", features = ["sync", "rt"] }
argmin = { version = "0.10.0", features = [] }
argmin-math = { version = "0.4.0", features = ["ndarray_v0_15-nolinalg"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.17", features = [
"env-filter",
"fmt",
"time",
] }
chrono = "0.4"
config = { version = "0.14", features = ["preserve_order"] }
faer = "0.19.3"
faer-ext = { version = "0.2.0", features = ["nalgebra", "ndarray"] }
pharmsol = "0.7.1"
toml = "0.8.14" #REMOVE
rand = "0.8.5"
anyhow = "1.0.86"
nalgebra = "0.33.0"
[profile.release]
codegen-units = 1
opt-level = 3
[dev-dependencies]
diol = "0.8.2"
[[bench]]
harness = false
name = "compare"