36 lines
924 B
TOML
36 lines
924 B
TOML
[package]
|
|
name = "entropyk-cli"
|
|
description = "Command-line interface for batch thermodynamic simulations"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[[bin]]
|
|
name = "entropyk-cli"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
entropyk = { path = "../entropyk" }
|
|
entropyk-core = { path = "../core" }
|
|
entropyk-components = { path = "../components" }
|
|
entropyk-solver = { path = "../solver" }
|
|
entropyk-fluids = { path = "../fluids" }
|
|
|
|
clap = { version = "4.4", features = ["derive", "color"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
anyhow = "1.0"
|
|
thiserror = { workspace = true }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
indicatif = { version = "0.17", features = ["rayon"] }
|
|
rayon = "1.8"
|
|
colored = "2.1"
|
|
petgraph = "0.6"
|
|
|
|
[dev-dependencies]
|
|
approx = "0.5"
|
|
tempfile = "3.10"
|