26 lines
603 B
TOML
26 lines
603 B
TOML
[package]
|
|
name = "mf-fitter"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
clap = { version = "4.4", features = ["derive"] }
|
|
ctrlc = "3.4"
|
|
deadpool-postgres = "0.11"
|
|
dotenv = "0.15"
|
|
futures = "0.3"
|
|
libmf = "0.3"
|
|
log = "0.4"
|
|
ndarray = { version = "0.15", features = ["blas"] }
|
|
ndarray-linalg = { version = "0.16", features = ["openblas-system"] }
|
|
num_cpus = "1.16"
|
|
plotly = { version = "0.8", features = ["kaleido"] }
|
|
pretty_env_logger = "0.5"
|
|
rand = "0.8"
|
|
rand_distr = "0.4"
|
|
tokio = { version = "1.35", features = ["full"] }
|
|
tokio-postgres = "0.7"
|
|
bytes = "1.5.0"
|
|
indicatif = "0.17"
|