Files
Entropyk/crates/cli/Cargo.toml

42 lines
1.1 KiB
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
[lib]
name = "entropyk_cli"
path = "src/lib.rs"
[[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", features = ["coolprop"] }
clap = { version = "4.4", features = ["derive", "color"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
schemars = "0.8"
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"
zip = { version = "0.6", default-features = false, features = ["deflate", "time"] }
[dev-dependencies]
approx = "0.5"
tempfile = "3.10"