27 lines
756 B
TOML
27 lines
756 B
TOML
[package]
|
|
name = "entropyk"
|
|
description = "A thermodynamic cycle simulation library with type-safe APIs"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
readme = "README.md"
|
|
keywords = ["thermodynamics", "simulation", "hvac", "refrigeration", "engineering"]
|
|
categories = ["science", "simulation"]
|
|
|
|
[dependencies]
|
|
entropyk-core = { path = "../core" }
|
|
entropyk-components = { path = "../components" }
|
|
entropyk-fluids = { path = "../fluids" }
|
|
entropyk-solver = { path = "../solver" }
|
|
thiserror = { workspace = true }
|
|
petgraph = "0.6"
|
|
|
|
[dev-dependencies]
|
|
approx = "0.5"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--html-in-header", "docs/katex-header.html"]
|