21 lines
432 B
TOML
21 lines
432 B
TOML
[package]
|
|
name = "mf-fitter"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.35", features = ["full"] }
|
|
tokio-postgres = "0.7"
|
|
clap = { version = "4.4", features = ["derive"] }
|
|
log = "0.4"
|
|
pretty_env_logger = "0.5"
|
|
libmf = "0.3"
|
|
anyhow = "1.0"
|
|
futures = "0.3"
|
|
ctrlc = "3.4"
|
|
deadpool-postgres = "0.11"
|
|
tokio-util = "0.7"
|
|
dotenv = "0.15"
|
|
rand = { version = "0.8", features = ["std_rng"] }
|
|
rand_distr = "0.4"
|