-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (60 loc) · 1.52 KB
/
Copy pathCargo.toml
File metadata and controls
67 lines (60 loc) · 1.52 KB
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 = "pmcore"
version = "0.26.2"
edition = "2021"
authors = [
"Julián D. Otálvaro <juliandavid347@gmail.com>",
"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.3.1"
ndarray = { version = "0.17.2", features = ["rayon"] }
serde = "1.0.188"
serde_json = "1.0.66"
sobol_burley = "0.5.0"
argmin = "0.11.0"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = [
"env-filter",
"fmt",
"time",
] }
faer = "0.24.0"
pharmsol = { version = "=0.28.3" }
anyhow = "1.0.100"
rayon = "1.10.0"
rand = "0.10.1"
[features]
default = []
json = []
exa = []
dsl-core = ["pharmsol/dsl-core"]
dsl-jit = ["pharmsol/dsl-jit"]
dsl-aot = ["pharmsol/dsl-aot"]
dsl-aot-load = ["pharmsol/dsl-aot-load"]
dsl-wasm = ["pharmsol/dsl-wasm"]
[profile.release]
codegen-units = 1
opt-level = 3
[profile.test]
inherits = "release"
[dev-dependencies]
approx = "0.5.1"
criterion = { version = "0.8" }
faer = "0.24.0"
[[bench]]
name = "bimodal_ke"
harness = false
# The BestDose example defines its model from a DSL text string, which requires
# a runtime DSL backend. Build/run it with: `--features dsl-jit`.
[[example]]
name = "bestdose"
path = "examples/bestdose/main.rs"
required-features = ["dsl-jit"]