-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (36 loc) · 1.04 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
[package]
name = "enzymeml"
version = "0.1.0"
edition = "2021"
description = "The EnzymeML Rust library"
license = "MIT"
[dependencies]
derive_builder = "0.20.0"
lazy_static = "1.5.0"
meval = { version = "0.2.0", features = ["serde"] }
schemars = "0.8.21"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.119"
rayon = "1.10.0"
ode_solvers = "0.5.0"
evalexpr = "11.3.0"
plotly = "0.9.0"
polars = { version = "0.41", features = ["csv"], default-features = false }
calamine = "0.25.0"
xlsxwriter = "0.6.1"
tempfile = "3.10.1"
mdmodels-macro = "0.1.2"
wasm-bindgen = { version = "0.2.92", optional = true }
quick-xml = { version = "0.37.1", features = ["serialize"] }
argmin = { version = "0.10.0" }
argmin-math = { version = "0.4.0", features = ["ndarray_v0_15-nolinalg"] }
finitediff = { version = "0.1.0", features = ["ndarray"] }
ordered-float = { version = "4.0" }
ndarray = "^0.15"
thiserror = "2.0.9"
argmin-observer-slog = "0.1.0"
nalgebra = "0.33.2"
[features]
wasm = ["wasm-bindgen"]
[dev-dependencies]
pretty_assertions = "1.4.1"